forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-11-06 20:07:29 +02:00
parent be5024cf2f
commit d0b46be5bb
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ def api_comment(v):
if ban.reason: reason += f" {ban.reason}"
return {"error": reason}, 401
existing = g.db.query(Comment.id).filter(Comment.author_id == v.id,
existing = g.db.query(Comment.permalink).filter(Comment.author_id == v.id,
Comment.deleted_utc == 0,
Comment.parent_comment_id == parent_comment_id,
Comment.parent_submission == parent_submission,