forked from rDrama/rDrama
1
0
Fork 0

exclude /h/changelog from hole filter

master
Aevann1 2022-11-07 03:18:54 +02:00
parent 5a61907268
commit 5111eb7ca4
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, filter_words='
else: posts = posts.filter_by(stickied=None)
if not sub and not holes:
posts = posts.filter_by(sub=None)
posts = posts.filter(or_(Submission.sub == None, Submission.sub == 'changelog'))
if v:
posts = posts.filter(Submission.author_id.notin_(v.userblocks))