forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-09-05 21:48:58 +02:00
parent bfd38bfff2
commit 7933deea87
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ def post_embed(id, v):
return render_template("submission_listing.html", listing=[p], v=v)
@app.template_filter("favorite_emojis")
def favorite_emojis('v'):
def favorite_emojis(x):
str = ""
emojis = session["favorite_emojis"]
emojis = sorted(emojis.items(), key=lambda x: x[1], reverse=True)