Fixes issue with unfollowing hashtag written in a different case

This commit is contained in:
Vitor Pamplona 2023-08-20 16:46:44 -04:00
parent ba9315fcd1
commit a79d1d5bd6

View File

@ -173,7 +173,7 @@ class ContactListEvent(
return create(
content = earlierVersion.content,
tags = earlierVersion.tags.filter { it.size > 1 && it[1] != hashtag },
tags = earlierVersion.tags.filter { it.size > 1 && !it[1].equals(hashtag, true) },
privateKey = privateKey,
createdAt = createdAt
)