aboutsummaryrefslogtreecommitdiff
path: root/src/github/daneren2005
diff options
context:
space:
mode:
Diffstat (limited to 'src/github/daneren2005')
-rw-r--r--src/github/daneren2005/dsub/service/DownloadFile.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadFile.java b/src/github/daneren2005/dsub/service/DownloadFile.java
index c7b66f8f..965a2a6f 100644
--- a/src/github/daneren2005/dsub/service/DownloadFile.java
+++ b/src/github/daneren2005/dsub/service/DownloadFile.java
@@ -408,7 +408,11 @@ public class DownloadFile implements BufferFile {
} else {
if(save) {
Util.renameFile(partialFile, saveFile);
- mediaStoreService.saveInMediaStore(DownloadFile.this);
+ try {
+ mediaStoreService.saveInMediaStore(DownloadFile.this);
+ } catch(Exception e) {
+ Log.w(TAG, "Failed to save in media store", e);
+ }
} else {
Util.renameFile(partialFile, completeFile);
}
@@ -428,6 +432,7 @@ public class DownloadFile implements BufferFile {
Util.delete(completeFile);
Util.delete(saveFile);
if (!isCancelled()) {
+ failed++;
failedDownload = true;
Log.w(TAG, "Failed to download '" + song + "'.", x);
}