From 9e44860e3758f9d736c63934897a5d61e4fa9e17 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Wed, 9 Jul 2014 08:34:33 -0700 Subject: Pausing while in PAUSED_TEMP needs to set playerState --- 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 f28c38dc..901d0578 100644 --- a/src/github/daneren2005/dsub/service/DownloadService.java +++ b/src/github/daneren2005/dsub/service/DownloadService.java @@ -934,6 +934,8 @@ public class DownloadService extends Service { mediaPlayer.pause(); } setPlayerState(temp ? PAUSED_TEMP : PAUSED); + } else if(playerState == PAUSED_TEMP) { + setPlayerState(temp ? PAUSED_TEMP : PAUSED); } } catch (Exception x) { handleError(x); -- cgit v1.2.3