summaryrefslogtreecommitdiff
path: root/core/src/main/java
diff options
context:
space:
mode:
authorLincoln Ramsay <a1291762@gmail.com>2021-02-28 09:23:11 +1000
committerLincoln Ramsay <a1291762@gmail.com>2021-03-01 07:13:33 +1000
commit8755a54e9945ec6b96009798e2f77e47aa6f0ee4 (patch)
tree99f392ce12a9e27de92047d8a0c95f487c876308 /core/src/main/java
parentfcbbaa40603a04ba809058327c8c9620f3798570 (diff)
downloadAntennaPod-8755a54e9945ec6b96009798e2f77e47aa6f0ee4.zip
Change the message that appears when downloads are finished
In the event that the notification hangs around, this is a more accurate description of what is happening.
Diffstat (limited to 'core/src/main/java')
-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 64ed85cf3..7c8fe9452 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
@@ -53,7 +53,7 @@ public class DownloadServiceNotification {
String contentTitle = context.getString(R.string.download_notification_title);
String downloadsLeft = (numDownloads > 0)
? context.getResources().getQuantityString(R.plurals.downloads_left, numDownloads, numDownloads)
- : context.getString(R.string.downloads_processing);
+ : context.getString(R.string.service_shutting_down);
String bigText = compileNotificationString(downloads);
notificationCompatBuilder.setContentTitle(contentTitle);