FIX: streams was returning users, fixed

This commit is contained in:
white
2025-03-08 17:55:08 +00:00
parent 45579438a4
commit 87794b8f33

View File

@@ -73,7 +73,7 @@ def search_results():
""")
for s in streams:
key = s.get("username")
key = s.get("title")
score = rank_results(query.lower(), key.lower())
s["score"] = score
if score < 2: