Commit 011703f9 by Sebastián Katzer

Statt der Nachricht wurde der Subtitle angezeigt

parent 9615f3d2
...@@ -100,7 +100,7 @@ public class LocalNotificationReceiver extends BroadcastReceiver { ...@@ -100,7 +100,7 @@ public class LocalNotificationReceiver extends BroadcastReceiver {
private Builder buildNotification () { private Builder buildNotification () {
Builder notification = new Notification.Builder(context) Builder notification = new Notification.Builder(context)
.setContentTitle(options.getTitle()) .setContentTitle(options.getTitle())
.setContentText(options.getSubTitle()) .setContentText(options.getMessage())
.setNumber(options.getBadge()) .setNumber(options.getBadge())
.setTicker(options.getTitle()) .setTicker(options.getTitle())
.setSmallIcon(options.getIcon()); .setSmallIcon(options.getIcon());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment