mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-04-23 23:10:58 +02:00
Merge pull request #699 from greenart7c3/main
fix crash tryng to decrypt/parse gossip
This commit is contained in:
commit
532048c35e
@ -46,7 +46,11 @@ class SealedGossipEvent(
|
||||
private fun unseal(signer: NostrSigner, onReady: (Gossip) -> Unit) {
|
||||
try {
|
||||
plainContent(signer) {
|
||||
onReady(Gossip.fromJson(it))
|
||||
try {
|
||||
onReady(Gossip.fromJson(it))
|
||||
} catch (e: Exception) {
|
||||
Log.w("GossipEvent", "Fail to decrypt or parse Gossip", e)
|
||||
}
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
Log.w("GossipEvent", "Fail to decrypt or parse Gossip", e)
|
||||
|
Loading…
x
Reference in New Issue
Block a user