forked from rDrama/rDrama
1
0
Fork 0

use proper get function

master
justcool393 2022-10-11 06:37:40 -07:00
parent 998b966f2b
commit 9ec3fb3b51
1 changed files with 7 additions and 2 deletions

View File

@ -77,8 +77,13 @@ def upvoting_downvoting(v, username, uid, cls, vote_cls, vote_dir, template, sta
listing = [p.id for p in listing]
next_exists = len(listing) > 25
listing = listing[:25]
listing = get_posts(listing, v=v)
if cls == Submission:
listing = get_posts(listing, v=v)
elif cls == Comment:
listing = get_comments(listing, v=v)
else:
listing = []
return render_template(template, next_exists=next_exists, listing=listing, page=page, v=v, standalone=standalone)