diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-11-19 21:12:12 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-11-19 21:12:12 -0800 |
commit | 83cf5a29d4428296f3ccfbfc7d5bddd2d601be58 (patch) | |
tree | 23d55d0493e25fa45daf208deb625003e0b772b1 /src/github | |
parent | 89e930d24fd4303058c680b1fb45098644b086ff (diff) | |
download | dsub-83cf5a29d4428296f3ccfbfc7d5bddd2d601be58.tar.gz dsub-83cf5a29d4428296f3ccfbfc7d5bddd2d601be58.tar.bz2 dsub-83cf5a29d4428296f3ccfbfc7d5bddd2d601be58.zip |
Fix web commit
Diffstat (limited to 'src/github')
-rw-r--r-- | src/github/daneren2005/dsub/fragments/DownloadFragment.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/github/daneren2005/dsub/fragments/DownloadFragment.java b/src/github/daneren2005/dsub/fragments/DownloadFragment.java index 6e608962..fe886e42 100644 --- a/src/github/daneren2005/dsub/fragments/DownloadFragment.java +++ b/src/github/daneren2005/dsub/fragments/DownloadFragment.java @@ -952,10 +952,10 @@ public class DownloadFragment extends SubsonicFragment implements OnGestureListe list = new ArrayList<DownloadFile>();
if(nowPlaying) {
- list.add(downloadService.getSongs());
+ list.addAll(downloadService.getSongs());
}
else {
- list.add(downloadService.getBackgroundDownloads());
+ list.addAll(downloadService.getBackgroundDownloads());
}
return null;
|