aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-01-03 07:51:06 -0800
committerScott Jackson <daneren2005@gmail.com>2014-01-03 07:51:06 -0800
commit828563a4919e82da1356d9f40c2cf6c73d610d3b (patch)
treeed2a6f04aecf17af7ca2a61a12c447d842876573 /src
parent360aee33c83c03f795a11513a405f084ab7d0542 (diff)
downloaddsub-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.java2
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);