summaryrefslogtreecommitdiff
path: root/src/de
diff options
context:
space:
mode:
Diffstat (limited to 'src/de')
-rw-r--r--src/de/danoeh/antennapod/asynctask/BitmapDecodeWorkerTask.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/de/danoeh/antennapod/asynctask/BitmapDecodeWorkerTask.java b/src/de/danoeh/antennapod/asynctask/BitmapDecodeWorkerTask.java
index 0174e0471..10d4d716e 100644
--- a/src/de/danoeh/antennapod/asynctask/BitmapDecodeWorkerTask.java
+++ b/src/de/danoeh/antennapod/asynctask/BitmapDecodeWorkerTask.java
@@ -76,6 +76,11 @@ public abstract class BitmapDecodeWorkerTask extends Thread {
if (AppConfig.DEBUG)
Log.d(TAG, "Finished loading bitmaps");
} else {
+ if (fileUrl == null) {
+ Log.w(TAG, "File URL is null");
+ } else {
+ Log.w(TAG, "File does not exist anymore.");
+ }
onInvalidFileUrl();
}
endBackgroundTask();