Skip to content

feat(messaging-core): add missing props #222

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat(messaging-core): add missing props
  • Loading branch information
edusperoni committed Jun 29, 2023
commit f4bc82350bf392f68eba9ff38049ca6e51610b5a
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ class FirebaseMessaging {
message.put("from", remoteMessage.from)
message.put("messageId", remoteMessage.messageId)
message.put("messageType", remoteMessage.messageType)
message.put("collapseKey", remoteMessage.collapseKey)
message.put("priority", remoteMessage.priority)
message.put("originalPriority", remoteMessage.originalPriority)

remoteMessage.notification?.let { notif ->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ class FirebaseMessaging {
message.put("from", remoteMessage.from)
message.put("messageId", remoteMessage.messageId)
message.put("messageType", remoteMessage.messageType)
message.put("collapseKey", remoteMessage.collapseKey)
message.put("priority", remoteMessage.priority)
message.put("originalPriority", remoteMessage.originalPriority)

remoteMessage.notification?.let { notif ->

Expand Down