summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadServiceNotification.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadServiceNotification.java b/core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadServiceNotification.java
index 96ac08c6d..e24922ab0 100644
--- a/core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadServiceNotification.java
+++ b/core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadServiceNotification.java
@@ -132,7 +132,7 @@ public class DownloadServiceNotification {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < statuses.size(); i++) {
- if (statuses.get(i).isSuccessful()) {
+ if (statuses.get(i) == null || statuses.get(i).isSuccessful()) {
continue;
}
sb.append("• ").append(statuses.get(i).getTitle());