Change mylist emoji

This commit is contained in:
MMaker 2025-02-25 18:06:46 -05:00
parent be23df3591
commit 3201aea856
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

2
app.py
View File

@ -219,7 +219,7 @@ def get_oembed_url(params):
comment_count = str(params.get('video', {}).get('count', {}).get('comment')) or "n/a"
like_count = str(params.get('video', {}).get('count', {}).get('like')) or "n/a"
mylist_count = str(params.get('video', {}).get('count', {}).get('mylist')) or "n/a"
provder_stats = f"👁️ {view_count} 💬 {comment_count} ❤️ {like_count} 📋 {mylist_count}"
provder_stats = f"👁️ {view_count} 💬 {comment_count} ❤️ {like_count} 📝 {mylist_count}"
author_name_encoded = urllib.parse.quote(author_name)
provider_stats_encoded = urllib.parse.quote(provder_stats)