diff --git a/app.py b/app.py index 6be13c0..c6b8f82 100644 --- a/app.py +++ b/app.py @@ -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)