Fixes issue with unfollowing hashtag written in a different case
This commit is contained in:
@@ -173,7 +173,7 @@ class ContactListEvent(
|
|||||||
|
|
||||||
return create(
|
return create(
|
||||||
content = earlierVersion.content,
|
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,
|
privateKey = privateKey,
|
||||||
createdAt = createdAt
|
createdAt = createdAt
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user