Commit ab613b72 authored by Michael Mason's avatar Michael Mason Committed by GitHub

Support creating group summary notifications

parent 56f8bbc0
...@@ -93,6 +93,9 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> { ...@@ -93,6 +93,9 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> {
String group = bundle.getString("group"); String group = bundle.getString("group");
if (group != null) group = URLDecoder.decode( group, "UTF-8" ); if (group != null) group = URLDecoder.decode( group, "UTF-8" );
notification.setGroup(group); notification.setGroup(group);
if (bundle.containsKey("groupSummary") && bundle.getBoolean("groupSummary")) {
notification.setGroupSummary(true);
}
} }
if (bundle.containsKey("ongoing") && bundle.getBoolean("ongoing")) { if (bundle.containsKey("ongoing") && bundle.getBoolean("ongoing")) {
......
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