forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-08-25 19:43:05 +02:00
parent c40135b39e
commit 6d23f50a6d
1 changed files with 0 additions and 2 deletions

View File

@ -465,7 +465,6 @@ def api_comment(v):
continue continue
if user.id != v.id: if user.id != v.id:
notify_users.add(user.id) notify_users.add(user.id)
if v.id == 1: print(notify_users)
for x in notify_users: for x in notify_users:
n = Notification(comment_id=c.id, user_id=x) n = Notification(comment_id=c.id, user_id=x)
g.db.add(n) g.db.add(n)
@ -508,7 +507,6 @@ def api_comment(v):
g.db.add(parent_post) g.db.add(parent_post)
g.db.commit() g.db.commit()
if v.id == 1: print(c.comment_aux)
if request.headers.get("Authorization"): return c.json if request.headers.get("Authorization"): return c.json
else: return jsonify({"html": render_template("comments.html", else: return jsonify({"html": render_template("comments.html",
v=v, v=v,