Fixed reply from notification

This commit is contained in:
M66B 2019-06-24 11:58:44 +02:00
parent 5932a8672c
commit 5501318b79
1 changed files with 1 additions and 1 deletions

View File

@ -2024,7 +2024,7 @@ class Core {
if (notify_reply && message.content) {
Intent reply = new Intent(context, ActivityCompose.class)
.putExtra("action", args.getString("action"))
.putExtra("action", "reply")
.putExtra("reference", message.id);
reply.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent piReply = PendingIntent.getActivity(context, ActivityCompose.PI_REPLY, reply, PendingIntent.FLAG_UPDATE_CURRENT);