any-id-fix-2
Some checks failed
Deploy on push / deploy (push) Failing after 7s

This commit is contained in:
Untone 2024-04-09 22:24:47 +03:00
parent e0df7e7436
commit 1110f7d8ec

View File

@ -344,7 +344,7 @@ def apply_reaction_filters(by, q):
q = q.filter(Author.id == created_by) q = q.filter(Author.id == created_by)
topic = by.get('topic', None) topic = by.get('topic', None)
if topic: if isinstance(topic, int):
q = q.filter(Shout.topics.any(id=topic)) q = q.filter(Shout.topics.any(id=topic))
if by.get('comment', False): if by.get('comment', False):