diff options
author | Daniel Bowman <daniel@danielbowman.co.uk> | 2018-10-20 18:38:26 +0100 |
---|---|---|
committer | Daniel Bowman <daniel@danielbowman.co.uk> | 2018-10-20 18:38:26 +0100 |
commit | 361f73ffa001fb6477683eee7f4c23932a234f74 (patch) | |
tree | 46fbe98524c56b45d184c38372082af6ccab1684 /app/src/main/java/github/daneren2005 | |
parent | 19895fc4b760793c739dd056d1de1b20df92d820 (diff) | |
download | dsub-361f73ffa001fb6477683eee7f4c23932a234f74.tar.gz dsub-361f73ffa001fb6477683eee7f4c23932a234f74.tar.bz2 dsub-361f73ffa001fb6477683eee7f4c23932a234f74.zip |
Fix a crash on getRecentDownloads if playlist is empty
Diffstat (limited to 'app/src/main/java/github/daneren2005')
-rw-r--r-- | app/src/main/java/github/daneren2005/dsub/service/DownloadService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/java/github/daneren2005/dsub/service/DownloadService.java b/app/src/main/java/github/daneren2005/dsub/service/DownloadService.java index 6c3cfbd7..fc2bc7fc 100644 --- a/app/src/main/java/github/daneren2005/dsub/service/DownloadService.java +++ b/app/src/main/java/github/daneren2005/dsub/service/DownloadService.java @@ -1060,7 +1060,7 @@ public class DownloadService extends Service { public synchronized List<DownloadFile> getRecentDownloads() { int from = Math.max(currentPlayingIndex - 10, 0); int songsToKeep = Math.max(Util.getPreloadCount(this), 20); - int to = Math.min(currentPlayingIndex + songsToKeep, downloadList.size() - 1); + int to = Math.min(currentPlayingIndex + songsToKeep, Math.max(downloadList.size() - 1, 0)); List<DownloadFile> temp = downloadList.subList(from, to); temp.addAll(backgroundDownloadList); return temp; |