diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-01-03 07:51:06 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-01-03 07:51:06 -0800 |
commit | 828563a4919e82da1356d9f40c2cf6c73d610d3b (patch) | |
tree | ed2a6f04aecf17af7ca2a61a12c447d842876573 /src | |
parent | 360aee33c83c03f795a11513a405f084ab7d0542 (diff) | |
download | dsub-828563a4919e82da1356d9f40c2cf6c73d610d3b.tar.gz dsub-828563a4919e82da1356d9f40c2cf6c73d610d3b.tar.bz2 dsub-828563a4919e82da1356d9f40c2cf6c73d610d3b.zip |
Fix album cache not using global address
Diffstat (limited to 'src')
-rw-r--r-- | src/github/daneren2005/dsub/view/AlbumView.java | 2 |
1 files changed, 1 insertions, 1 deletions
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); |