From 828563a4919e82da1356d9f40c2cf6c73d610d3b Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Fri, 3 Jan 2014 07:51:06 -0800 Subject: Fix album cache not using global address --- src/github/daneren2005/dsub/view/AlbumView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/github/daneren2005/dsub/view/AlbumView.java b/src/github/daneren2005/dsub/view/AlbumView.java index b29c2ed5..af59165f 100644 --- a/src/github/daneren2005/dsub/view/AlbumView.java +++ b/src/github/daneren2005/dsub/view/AlbumView.java @@ -80,7 +80,7 @@ public class AlbumView extends UpdateView { @Override protected void updateBackground() { if(file == null) { - String s = Util.getRestUrl(context, null) + album.getId(); + String s = Util.getRestUrl(context, null, false) + album.getId(); String cacheName = "directory-" + s.hashCode() + ".ser"; MusicDirectory dir = FileUtil.deserialize(context, cacheName, MusicDirectory.class); -- cgit v1.2.3