Support for NIP24- Trustless GiftWrapped Sealed Private Direct Messages and Small Private Groups

This commit is contained in:
Vitor Pamplona
2023-08-10 18:04:23 -04:00
parent 89266bc76f
commit ab2fff0194
63 changed files with 1982 additions and 410 deletions
@@ -12,7 +12,7 @@ class PushNotificationReceiverService : FirebaseMessagingService() {
remoteMessage.data.let {
val eventStr = remoteMessage.data["event"] ?: return
val event = Event.fromJson(eventStr, true)
EventNotificationConsumer(applicationContext).consume(event)
EventNotificationConsumer(applicationContext).unwrapAndConsume(event)
}
}