aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-06-11 22:53:34 -0700
committerScott Jackson <daneren2005@gmail.com>2013-06-11 22:53:34 -0700
commit5140598a4047406aa4df0faeaabb2439f48166fe (patch)
tree3f04470f22b72ea80d01ace3f01ea793ba4797e9
parent7e7ff0696168a9a078f64742a129c53987f0ed71 (diff)
downloaddsub-5140598a4047406aa4df0faeaabb2439f48166fe.tar.gz
dsub-5140598a4047406aa4df0faeaabb2439f48166fe.tar.bz2
dsub-5140598a4047406aa4df0faeaabb2439f48166fe.zip
Fix songs in background download list not being taken off in view
-rw-r--r--subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java b/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java
index 7748cfa7..ba8ea1e4 100644
--- a/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java
+++ b/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java
@@ -1349,6 +1349,7 @@ public class DownloadServiceImpl extends Service implements DownloadService {
if(downloadFile.isWorkDone() && (!downloadFile.shouldSave() || downloadFile.isSaved())) {
// Don't need to keep list like active song list
backgroundDownloadList.remove(i);
+ revision++;
i--;
} else {
currentDownloading = downloadFile;