This commit is contained in:
Aevann1 2021-09-25 03:46:15 +02:00
parent 0e492661d6
commit 5388ba5ee9

View file

@ -172,6 +172,7 @@ def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, filter_words='
cutoff = now - 2592000
elif t == 'year':
cutoff = now - 31536000
print(cutoff)
print(posts.all())
posts = posts.filter(Submission.created_utc >= cutoff)