fixes-done

This commit is contained in:
2022-09-07 22:36:40 +03:00
parent b4561c704d
commit 00181e7114
2 changed files with 14 additions and 11 deletions

View File

@@ -88,7 +88,7 @@ class ReactedStorage:
self = ReactedStorage
async with self.lock:
return list(
filter(lambda r: r.comment, self.reacted["topics"].get(topic_slug, {}))
filter(lambda r: r.comment, self.reacted["topics"].get(topic_slug, []))
)
@staticmethod