summaryrefslogtreecommitdiff
path: root/core/src/main/java
diff options
context:
space:
mode:
authorH. Lehmann <ByteHamster@users.noreply.github.com>2019-11-21 14:13:10 +0100
committerGitHub <noreply@github.com>2019-11-21 14:13:10 +0100
commit7fd8aa8503eef6f711157ba55a3feb9a86e6fbfe (patch)
treeab41c408414f973374982370f3411cdd6d67fc92 /core/src/main/java
parent6c0f773188d94d70d79f00d4d2f92db603af67ac (diff)
parent06fe53f6078afc1b348cdc0af89add086d622f75 (diff)
downloadAntennaPod-7fd8aa8503eef6f711157ba55a3feb9a86e6fbfe.zip
Merge pull request #3630 from ByteHamster/podcast-settings-icon
Added icons to podcast settings
Diffstat (limited to 'core/src/main/java')
-rw-r--r--core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadServiceNotification.java6
1 files changed, 1 insertions, 5 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 431eccc8c..f49257174 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
@@ -15,10 +15,6 @@ import de.danoeh.antennapod.core.util.gui.NotificationUtils;
import java.util.ArrayList;
import java.util.List;
-import java.util.Timer;
-import java.util.concurrent.ScheduledExecutorService;
-import java.util.concurrent.ScheduledFuture;
-import java.util.concurrent.TimeUnit;
public class DownloadServiceNotification {
private static final String TAG = "DownloadSvcNotification";
@@ -154,7 +150,7 @@ public class DownloadServiceNotification {
.setContentText(context.getText(R.string.authentication_notification_msg))
.setStyle(new NotificationCompat.BigTextStyle().bigText(context.getText(R.string.authentication_notification_msg)
+ ": " + resourceTitle))
- .setSmallIcon(R.drawable.ic_notification_key)
+ .setSmallIcon(R.drawable.ic_key_white)
.setAutoCancel(true)
.setContentIntent(ClientConfig.downloadServiceCallbacks.getAuthentificationNotificationContentIntent(context, downloadRequest));
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {