diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-12-02 22:57:39 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-12-02 22:57:39 -0800 |
commit | 154109c7cb0b1c7f4b5a29e940715987a53ee08f (patch) | |
tree | 14bbd5a6455a07d4fac1c7f6674b13297c0576c1 | |
parent | 60abf7d67016adbfa4a43b442f9252328271d4b7 (diff) | |
download | dsub-154109c7cb0b1c7f4b5a29e940715987a53ee08f.tar.gz dsub-154109c7cb0b1c7f4b5a29e940715987a53ee08f.tar.bz2 dsub-154109c7cb0b1c7f4b5a29e940715987a53ee08f.zip |
Fix download notification lingering sometimes
-rw-r--r-- | src/github/daneren2005/dsub/service/DownloadServiceImpl.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadServiceImpl.java b/src/github/daneren2005/dsub/service/DownloadServiceImpl.java index d15ab7a5..56f79a0e 100644 --- a/src/github/daneren2005/dsub/service/DownloadServiceImpl.java +++ b/src/github/daneren2005/dsub/service/DownloadServiceImpl.java @@ -260,6 +260,7 @@ public class DownloadServiceImpl extends Service implements DownloadService { remoteController.shutdown(); } Util.hidePlayingNotification(this, this, handler); + Util.hideDownloadingNotification(this); } public static DownloadService getInstance() { |