fix users tag in search

This commit is contained in:
Believethehype
2024-02-06 19:54:09 +01:00
parent b68c4a4b42
commit acb59168d5
3 changed files with 8 additions and 4 deletions

View File

@@ -110,7 +110,9 @@ class AdvancedSearch(DVMTaskInterface):
search_until = Timestamp.from_secs(int(options["until"]))
userkeys = []
for user in options["users"]:
user = user[1]
tag = Tag.parse(user)
user = tag.as_vec()[1]
#user = user[1]
user = str(user).lstrip("@")
if str(user).startswith('npub'):
userkey = PublicKey.from_bech32(user)