From 07d295fa9916902e4c0b83847be8068028640632 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Wed, 23 Jul 2014 19:45:46 -0700 Subject: Change tasker to start instead of play, shuffle auto starts --- .../daneren2005/dsub/service/DownloadServiceLifecycleSupport.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/github') diff --git a/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java b/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java index 04a2535c..40bb5871 100644 --- a/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java +++ b/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java @@ -163,8 +163,9 @@ public class DownloadServiceLifecycleSupport { if(DownloadService.START_PLAY.equals(action)) { if(intent.getBooleanExtra(Constants.INTENT_EXTRA_NAME_SHUFFLE, false)) { downloadService.setShufflePlayEnabled(true); + } else { + downloadService.start(); } - downloadService.play(); } else if(DownloadService.CANCEL_DOWNLOADS.equals(action)) { downloadService.clearBackground(); } else if(intent.getExtras() != null) { -- cgit v1.2.3