forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-09-17 11:43:50 +02:00
parent a3d83f9413
commit 6400d91fd5
1 changed files with 3 additions and 2 deletions

View File

@ -220,14 +220,15 @@ def post_id(pid, anything=None, v=None):
for key in keys: session.pop(key)
#post.views += 1
#g.db.add(post)
post.views += 1
g.db.add(post)
if isinstance(session.get('over_18', 0), dict): session["over_18"] = 0
if post.over_18 and not (v and v.over_18) and not session.get('over_18', 0) >= int(time.time()):
if request.headers.get("Authorization"): return {"error":"Must be 18+ to view"}, 451
else: return render_template("errors/nsfw.html", v=v)
post.tree_comments()
g.db.commit()
if request.headers.get("Authorization"): return post.json
else:
if not v or v.highlightcomments: return post.rendered_page(v=v, last_view_utc=last_view_utc, sort=sort)