chore: add verify to videoconf push on android
This commit is contained in:
parent
987dc52441
commit
538e9d7e8e
|
@ -97,9 +97,13 @@ public class CustomPushNotification extends PushNotification {
|
|||
bundle.putString("senderId", hasSender ? loadedEjson.sender._id : "1");
|
||||
bundle.putString("avatarUri", loadedEjson.getAvatarUri());
|
||||
|
||||
notificationMessages.get(notId).add(bundle);
|
||||
postNotification(Integer.parseInt(notId));
|
||||
notifyReceivedToJS();
|
||||
if (loadedEjson.notificationType == "videoconf") {
|
||||
notifyReceivedToJS();
|
||||
} else {
|
||||
notificationMessages.get(notId).add(bundle);
|
||||
postNotification(Integer.parseInt(notId));
|
||||
notifyReceivedToJS();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue