Skip to content

Commit

Permalink
Fix on push notification title
Browse files Browse the repository at this point in the history
  • Loading branch information
tomastiminskas committed Jan 5, 2024
1 parent 8b729da commit c8f4845
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ internal class SphinxFirebaseMessagingService: FirebaseMessagingService() {

// Extract data from the message
// Extract data from the message
val title: String = p0.data["message"] ?: ""
val title: String = p0.data["title"] ?: ""
val messageBody: String = p0.data["body"] ?: ""
val chatId: Long? = (p0.data["chat_id"] ?: "").toLongOrNull()

Expand Down

0 comments on commit c8f4845

Please sign in to comment.