Overrides pubkey to avoid impersonators on seals.

pull/882/head
Vitor Pamplona 2024-05-24 19:27:14 -04:00
rodzic cd008d78a0
commit 0c22e66e8f
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -137,7 +137,7 @@ class Gossip(
val content: String?,
) {
fun mergeWith(event: SealedGossipEvent): Event {
val newPubKey = pubKey?.ifBlank { null } ?: event.pubKey
val newPubKey = event.pubKey // forces to be the pubkey of the seal to make sure impersonators don't impersonate
val newCreatedAt = if (createdAt != null && createdAt > 1000) createdAt else event.createdAt
val newKind = kind ?: -1
val newTags = (tags ?: emptyArray()).plus(event.tags)