Commit 14b8833c authored by Leonardo Aramaki's avatar Leonardo Aramaki

Fix missing extras renaming

parent 1488f792
......@@ -399,7 +399,7 @@ object PushManager {
.setLabel(REPLY_LABEL)
.build()
val replyIntent = Intent(ctx, ReplyReceiver::class.java)
replyIntent.putExtra("push", pushMessage as Serializable)
replyIntent.putExtra(EXTRA_PUSH_MESSAGE, pushMessage as Serializable)
val pendingIntent = PendingIntent.getBroadcast(
ctx, randomizer.nextInt(), replyIntent, 0)
val replyAction =
......
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