Commit dc814643 by Sebastián Katzer

Add missing ongoing flag

parent 638db3e3
...@@ -126,7 +126,8 @@ public class Receiver extends BroadcastReceiver { ...@@ -126,7 +126,8 @@ public class Receiver extends BroadcastReceiver {
.setSmallIcon(options.getSmallIcon()) .setSmallIcon(options.getSmallIcon())
.setLargeIcon(icon) .setLargeIcon(icon)
.setSound(options.getSound()) .setSound(options.getSound())
.setAutoCancel(options.getAutoCancel()); .setAutoCancel(options.getAutoCancel())
.setOngoing(options.getOngoing());
setClickEvent(notification); setClickEvent(notification);
...@@ -176,4 +177,4 @@ public class Receiver extends BroadcastReceiver { ...@@ -176,4 +177,4 @@ public class Receiver extends BroadcastReceiver {
private void fireTriggerEvent () { private void fireTriggerEvent () {
LocalNotification.fireEvent("trigger", options.getId(), options.getJSON()); LocalNotification.fireEvent("trigger", options.getId(), options.getJSON());
} }
} }
\ No newline at end of file
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