diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-07-17 22:10:15 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-07-17 22:10:15 -0700 |
commit | a3186e28ce8acfe18aed8827bcd42e4a09b10b42 (patch) | |
tree | 6d6cbe1cabd9763a7dbcfa7a197b1ee97d09e22b /src | |
parent | e8a9ef6119105069140261bbfeda7f6efa1dd55d (diff) | |
download | dsub-a3186e28ce8acfe18aed8827bcd42e4a09b10b42.tar.gz dsub-a3186e28ce8acfe18aed8827bcd42e4a09b10b42.tar.bz2 dsub-a3186e28ce8acfe18aed8827bcd42e4a09b10b42.zip |
More changes for more descriptive sync notifications
Diffstat (limited to 'src')
-rw-r--r-- | src/github/daneren2005/dsub/util/Notifications.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/util/Notifications.java b/src/github/daneren2005/dsub/util/Notifications.java index fc375076..a070b37a 100644 --- a/src/github/daneren2005/dsub/util/Notifications.java +++ b/src/github/daneren2005/dsub/util/Notifications.java @@ -304,7 +304,7 @@ public final class Notifications { .setSmallIcon(R.drawable.stat_notify_sync)
.setContentTitle(context.getResources().getString(stringId))
.setContentText(extra)
- .setStyle(new NotificationCompat.BigTextStyle().bigText(content.replace(", ", "\n")))
+ .setStyle(new NotificationCompat.BigTextStyle().bigText(extra.replace(", ", "\n")))
.setOngoing(false)
.setGroup(NOTIFICATION_SYNC_GROUP)
.setPriority(NotificationCompat.PRIORITY_LOW);
|