Merge pull request #1174 from davotoula/1173-add-nip05-to-hidden-words-filtering

Added nip05 field from user profile to be used as part of hidden words filtering
This commit is contained in:
Vitor Pamplona 2024-11-11 08:52:28 -05:00 committed by GitHub
commit 43688c4117
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -399,6 +399,10 @@ class User(
return true
}
if (info?.nip05?.containsAny(hiddenWordsCase) == true) {
return true
}
return false
}