socdoc -> message 로 변경
This commit is contained in:
@@ -56,9 +56,9 @@ class SodaFirebaseMessagingService : FirebaseMessagingService() {
|
||||
intent.putExtra(Constants.EXTRA_ROOM_ID, roomId.toLong())
|
||||
}
|
||||
|
||||
val socdocId = messageData["message_id"]
|
||||
if (socdocId != null) {
|
||||
intent.putExtra(Constants.EXTRA_MESSAGE_ID, socdocId.toLong())
|
||||
val messageId = messageData["message_id"]
|
||||
if (messageId != null) {
|
||||
intent.putExtra(Constants.EXTRA_MESSAGE_ID, messageId.toLong())
|
||||
}
|
||||
|
||||
val audioContentId = messageData["content_id"]
|
||||
|
Reference in New Issue
Block a user