From 5140598a4047406aa4df0faeaabb2439f48166fe Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Tue, 11 Jun 2013 22:53:34 -0700 Subject: Fix songs in background download list not being taken off in view --- .../src/github/daneren2005/dsub/service/DownloadServiceImpl.java | 1 + 1 file changed, 1 insertion(+) 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; -- cgit v1.2.3