diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-10-19 11:26:31 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-10-19 11:26:31 -0700 |
commit | 397819fbc4d4c2104c7e7933ef86bba07f19b80c (patch) | |
tree | 90a019bc5bf35d66b651aee27ad4e122e13c177d /src/github/daneren2005 | |
parent | 1a492b89eab3acc1d05bae102537a6fa3141d739 (diff) | |
parent | 59d8699bd00be1d70a8c1e3488882ab78c3840c1 (diff) | |
download | dsub-397819fbc4d4c2104c7e7933ef86bba07f19b80c.tar.gz dsub-397819fbc4d4c2104c7e7933ef86bba07f19b80c.tar.bz2 dsub-397819fbc4d4c2104c7e7933ef86bba07f19b80c.zip |
Merge branch 'master' of https://github.com/daneren2005/Subsonic
Diffstat (limited to 'src/github/daneren2005')
-rw-r--r-- | src/github/daneren2005/dsub/service/DownloadServiceImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadServiceImpl.java b/src/github/daneren2005/dsub/service/DownloadServiceImpl.java index 8db1c9cb..9c58ed2f 100644 --- a/src/github/daneren2005/dsub/service/DownloadServiceImpl.java +++ b/src/github/daneren2005/dsub/service/DownloadServiceImpl.java @@ -1347,7 +1347,7 @@ public class DownloadServiceImpl extends Service implements DownloadService { } protected synchronized void checkDownloads() { - if (!Util.isExternalStoragePresent() || !lifecycleSupport.isExternalStorageAvailable()) { + if (!Util.isExternalStoragePresent() || !lifecycleSupport.isExternalStorageAvailable() || Util.isOffline(this)) { return; } |