diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-03-24 21:28:17 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-03-24 21:28:17 -0700 |
commit | c68224d9693bc888684d0fcff9466fe72ed3f2f3 (patch) | |
tree | 6d6487ff5a8bf724dec096550af8b3689a0798a7 /src/github/daneren2005 | |
parent | 2292312f402048db15107bebb6c36236e5bcf591 (diff) | |
download | dsub-c68224d9693bc888684d0fcff9466fe72ed3f2f3.tar.gz dsub-c68224d9693bc888684d0fcff9466fe72ed3f2f3.tar.bz2 dsub-c68224d9693bc888684d0fcff9466fe72ed3f2f3.zip |
#316 Fix Now Playing not showing, remove #200 original fix since now will start playing
Diffstat (limited to 'src/github/daneren2005')
-rw-r--r-- | src/github/daneren2005/dsub/service/DownloadService.java | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadService.java b/src/github/daneren2005/dsub/service/DownloadService.java index e2e664ac..4d7a721c 100644 --- a/src/github/daneren2005/dsub/service/DownloadService.java +++ b/src/github/daneren2005/dsub/service/DownloadService.java @@ -1186,13 +1186,6 @@ public class DownloadService extends Service { } } - SharedPreferences prefs = Util.getPreferences(this); - if(currentPlaying != null && prefs.getBoolean(Constants.PREFERENCES_KEY_PERSISTENT_NOTIFICATION, false)) { - Util.showPlayingNotification(this, this, handler, currentPlaying.getSong()); - } else { - Util.hidePlayingNotification(this, this, handler); - } - if(remoteState == RemoteControlState.LOCAL) { checkDownloads(); } |