From 1630d9f9cd2ebdfc87041cb6ff718cc9abb2a61d Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Tue, 23 Sep 2014 15:22:03 -0700 Subject: Don't try to auto bookmark if older server --- src/github/daneren2005/dsub/service/DownloadService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/github') 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; } -- cgit v1.2.3