aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/src
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-03-25 19:52:30 -0700
committerScott Jackson <daneren2005@gmail.com>2013-03-25 19:52:30 -0700
commit40286283d5813bd94851557411bf5c4feab448d1 (patch)
treeea7f571405aa38fbf0c6a79708a2d9b1b10bacb4 /subsonic-android/src
parent7648260a62d422c3b1d497cf8611b0e6ebef8c1a (diff)
downloaddsub-40286283d5813bd94851557411bf5c4feab448d1.tar.gz
dsub-40286283d5813bd94851557411bf5c4feab448d1.tar.bz2
dsub-40286283d5813bd94851557411bf5c4feab448d1.zip
Fix notification not being removed when clearing playlist
Diffstat (limited to 'subsonic-android/src')
-rw-r--r--subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java b/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java
index 53be6777..dfb827ef 100644
--- a/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java
+++ b/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java
@@ -503,6 +503,7 @@ public class DownloadServiceImpl extends Service implements DownloadService {
mRemoteControl.updateMetadata(this, currentPlaying.getSong());
} else {
Util.broadcastNewTrackInfo(this, null);
+ Util.hidePlayingNotification(this, this, handler);
}
}