aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/src
diff options
context:
space:
mode:
authorowner <owner@DeeDee-Laptop>2012-11-21 20:39:48 -0800
committerowner <owner@DeeDee-Laptop>2012-11-21 20:39:48 -0800
commitb32004b4a4e8c1bbca0c55dfe1d95d6ac5b91ac0 (patch)
treedc057472634221bb1c3ffd1a86ccb5c1e0d0f137 /subsonic-android/src
parent7eb0fbe90e5a20c1ed33f0f8d12c22b03d50cc42 (diff)
downloaddsub-b32004b4a4e8c1bbca0c55dfe1d95d6ac5b91ac0.tar.gz
dsub-b32004b4a4e8c1bbca0c55dfe1d95d6ac5b91ac0.tar.bz2
dsub-b32004b4a4e8c1bbca0c55dfe1d95d6ac5b91ac0.zip
Fix artists not refreshing properly when prompted
Diffstat (limited to 'subsonic-android/src')
-rw-r--r--subsonic-android/src/github/daneren2005/dsub/service/RESTMusicService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/service/RESTMusicService.java b/subsonic-android/src/github/daneren2005/dsub/service/RESTMusicService.java
index 60cffc7b..56e199df 100644
--- a/subsonic-android/src/github/daneren2005/dsub/service/RESTMusicService.java
+++ b/subsonic-android/src/github/daneren2005/dsub/service/RESTMusicService.java
@@ -214,7 +214,7 @@ public class RESTMusicService implements MusicService {
return cachedIndexes;
}
- long lastModified = cachedIndexes == null ? 0L : cachedIndexes.getLastModified();
+ long lastModified = (cachedIndexes == null || refresh) ? 0L : cachedIndexes.getLastModified();
List<String> parameterNames = new ArrayList<String>();
List<Object> parameterValues = new ArrayList<Object>();