Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Development <david-dev@live.de>2015-06-15 22:16:59 +0300
committerDavid Development <david-dev@live.de>2015-06-15 22:16:59 +0300
commit456b4daa878bd77225252268e780b60f480f17eb (patch)
tree7642cda2db23d743aa1986cfb5e64750cfdd4c0c /News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/services
parent028aaa83b646510818c81071b2faf7e0028fb603 (diff)
Fix #348
Diffstat (limited to 'News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/services')
-rw-r--r--News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/services/DownloadImagesService.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/services/DownloadImagesService.java b/News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/services/DownloadImagesService.java
index a62a8718..1ebfcaf1 100644
--- a/News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/services/DownloadImagesService.java
+++ b/News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/services/DownloadImagesService.java
@@ -166,7 +166,7 @@ public class DownloadImagesService extends IntentService {
NotificationCompat.Builder notifyBuilder = new NotificationCompat.Builder(this)
.setContentTitle("ownCloud News Reader")
.setContentText("Only " + limit + " images can be cached at once")
- .setSmallIcon(R.drawable.ic_launcher)
+ .setSmallIcon(R.drawable.ic_notification)
.setContentIntent(pIntent);
Notification notify = notifyBuilder.build();
@@ -183,7 +183,7 @@ public class DownloadImagesService extends IntentService {
NotificationDownloadImages = new NotificationCompat.Builder(this)
.setContentTitle("ownCloud News Reader")
.setContentText("Downloading Images for offline usage")
- .setSmallIcon(R.drawable.ic_launcher)
+ .setSmallIcon(R.drawable.ic_notification)
.setContentIntent(pIntent);
Notification notify = NotificationDownloadImages.build();