Commit 0697e716 authored by Sergiy Cheredko's avatar Sergiy Cheredko Committed by GitHub

Modified notification field to "android_actions"

parent d53f1854
......@@ -212,8 +212,8 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> {
notification.setContentIntent(pendingIntent);
if (bundle.containsKey("actions")) {
String[] actions = bundle.getString("actions").split(",");
if (bundle.containsKey("android_actions")) {
String[] actions = bundle.getString("android_actions").split(",");
for (int a = 0; a < actions.length; a++) {
String actionValue = actions[a].trim();
Intent actionIntent = new Intent(mContext, intentClass);
......
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