Fixes NPE when updating a metadata with null name
This commit is contained in:
+1
-1
@@ -176,7 +176,7 @@ class MetadataEvent(
|
|||||||
|
|
||||||
val tags =
|
val tags =
|
||||||
latest.tags.builder {
|
latest.tags.builder {
|
||||||
alt("User profile for ${currentMetadata.get("name").asText() ?: "Anonymous"}")
|
alt("User profile for ${currentMetadata.get("name")?.asText() ?: "Anonymous"}")
|
||||||
|
|
||||||
// For https://github.com/nostr-protocol/nips/pull/1770
|
// For https://github.com/nostr-protocol/nips/pull/1770
|
||||||
currentMetadata.get(NameTag.TAG_NAME)?.asText()?.let { name(it) } ?: run { remove(NameTag.TAG_NAME) }
|
currentMetadata.get(NameTag.TAG_NAME)?.asText()?.let { name(it) } ?: run { remove(NameTag.TAG_NAME) }
|
||||||
|
|||||||
Reference in New Issue
Block a user