From a7111d92b44dbdbd35ea6152d3ce53f378bd7219 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Mon, 16 Mar 2015 08:37:53 -0700 Subject: Fix restoring not changing current index/position --- src/github/daneren2005/dsub/service/DownloadService.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/github/daneren2005/dsub/service/DownloadService.java b/src/github/daneren2005/dsub/service/DownloadService.java index 5efa48a0..fb899ee8 100644 --- a/src/github/daneren2005/dsub/service/DownloadService.java +++ b/src/github/daneren2005/dsub/service/DownloadService.java @@ -375,6 +375,8 @@ public class DownloadService extends Service { if (autoplay) { play(start, true, position); + } else if(start != 0 || position != 0) { + play(start, false, position); } else { if (currentPlaying == null) { currentPlaying = downloadList.get(0); -- cgit v1.2.3