aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/src/github/daneren2005
diff options
context:
space:
mode:
authordaneren2005 <daneren2005@gmail.com>2013-07-23 08:50:24 -0700
committerdaneren2005 <daneren2005@gmail.com>2013-07-23 08:50:24 -0700
commit4d932d677fe6ea3fa335cefde1a00b7ae20f8a32 (patch)
treea3ebcbbed77566f733dfea7d59d3fd871852ab16 /subsonic-android/src/github/daneren2005
parent9eced048e8f5d7eadc0901575a4d3a5867ce8cf8 (diff)
downloaddsub-4d932d677fe6ea3fa335cefde1a00b7ae20f8a32.tar.gz
dsub-4d932d677fe6ea3fa335cefde1a00b7ae20f8a32.tar.bz2
dsub-4d932d677fe6ea3fa335cefde1a00b7ae20f8a32.zip
Fix view looking at wrong DownloadFile when being converted due to caching
Diffstat (limited to 'subsonic-android/src/github/daneren2005')
-rw-r--r--subsonic-android/src/github/daneren2005/dsub/view/SongView.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/view/SongView.java b/subsonic-android/src/github/daneren2005/dsub/view/SongView.java
index 6a7da19e..4da03c72 100644
--- a/subsonic-android/src/github/daneren2005/dsub/view/SongView.java
+++ b/subsonic-android/src/github/daneren2005/dsub/view/SongView.java
@@ -143,6 +143,7 @@ public class SongView extends UpdateView implements Checkable {
durationTextView.setText(Util.formatDuration(song.getDuration()));
checkedTextView.setVisibility(checkable && !song.isVideo() ? View.VISIBLE : View.GONE);
+ revision = 0;
updateBackground();
update();
}