forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-04-26 00:48:28 +02:00
parent 1f7d343ff6
commit a895faefe5
1 changed files with 8 additions and 2 deletions

View File

@ -537,7 +537,8 @@ def all_comments(v):
sort=sort, sort=sort,
t=t, t=t,
gt=gt, gt=gt,
lt=lt lt=lt,
site=SITE
) )
comments = get_comments(idlist, v=v) comments = get_comments(idlist, v=v)
@ -552,10 +553,15 @@ def all_comments(v):
@cache.memoize(timeout=86400) @cache.memoize(timeout=86400)
def comment_idlist(page=1, v=None, nsfw=False, sort="new", t="all", gt=0, lt=0): def comment_idlist(page=1, v=None, nsfw=False, sort="new", t="all", gt=0, lt=0, site=None):
comments = g.db.query(Comment.id).filter(Comment.parent_submission != None) comments = g.db.query(Comment.id).filter(Comment.parent_submission != None)
if site == 'cringetopia.org':
comments = comments.join(Submission, Comment.parent_submission == Submission.id).filter(Submission.site == 1)
elif site == 'watchpeopledie.co':
comments = comments.join(Submission, Comment.parent_submission == Submission.id).filter(Submission.site == 2)
if v.admin_level < 2: if v.admin_level < 2:
private = [x[0] for x in g.db.query(Submission.id).filter(Submission.private == True).all()] private = [x[0] for x in g.db.query(Submission.id).filter(Submission.private == True).all()]