fix bad code

pull/225/head
Aevann 2024-03-16 10:21:23 +02:00
parent be83f037e7
commit 57af16a886
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ def execute_blackjack(v, target, body, kind):
extra_info = f"reports on {target.permalink}"
elif kind in {'comment', 'message'}:
for id in notified_ids:
existing = g.db.query(Notification).filter_by(comment_id=target.id, user_id=id)
existing = g.db.query(Notification).filter_by(comment_id=target.id, user_id=id).one_or_none()
if existing: continue
n = Notification(comment_id=target.id, user_id=id)
g.db.add(n)