diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-09-23 15:22:03 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-09-23 15:22:03 -0700 |
commit | 1630d9f9cd2ebdfc87041cb6ff718cc9abb2a61d (patch) | |
tree | 95b450289d0a6607fe10c0bb0ce8074c857cd2e2 /src/github/daneren2005 | |
parent | 62bcf62dfbb5843f03ae74e4f38a9065c9bb0fd5 (diff) | |
download | dsub-1630d9f9cd2ebdfc87041cb6ff718cc9abb2a61d.tar.gz dsub-1630d9f9cd2ebdfc87041cb6ff718cc9abb2a61d.tar.bz2 dsub-1630d9f9cd2ebdfc87041cb6ff718cc9abb2a61d.zip |
Don't try to auto bookmark if older server
Diffstat (limited to 'src/github/daneren2005')
-rw-r--r-- | src/github/daneren2005/dsub/service/DownloadService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadService.java b/src/github/daneren2005/dsub/service/DownloadService.java index 127df768..5e8a9db6 100644 --- a/src/github/daneren2005/dsub/service/DownloadService.java +++ b/src/github/daneren2005/dsub/service/DownloadService.java @@ -1873,7 +1873,7 @@ public class DownloadService extends Service { private void checkAddBookmark() { // Don't do anything if no current playing - if(currentPlaying == null) { + if(currentPlaying == null || !ServerInfo.canBookmark(this)) { return; } |