Fixes
This commit is contained in:
parent
c456200ae0
commit
77f9545db6
11
app.py
11
app.py
@ -219,8 +219,11 @@ def get_oembed_url(params):
|
||||
if not params:
|
||||
return None
|
||||
|
||||
author_id = params.get('owner', {}).get('id')
|
||||
author_name = params.get('owner', {}).get('nickname')
|
||||
author_id = None
|
||||
author_name = None
|
||||
if params.get('owner'):
|
||||
author_id = params['owner'].get('id')
|
||||
author_name = params['owner'].get('nickname')
|
||||
video_id = params.get('video', {}).get('id')
|
||||
|
||||
if not video_id:
|
||||
@ -232,12 +235,12 @@ def get_oembed_url(params):
|
||||
mylist_count = human_format(params.get('video', {}).get('count', {}).get('mylist')) or "n/a"
|
||||
provder_stats = f"👁️ {view_count} 💬 {comment_count} ❤️ {like_count} 📝 {mylist_count}"
|
||||
|
||||
author_name_encoded = urllib.parse.quote(author_name)
|
||||
author_name_encoded = urllib.parse.quote(author_name) if author_name else ""
|
||||
provider_stats_encoded = urllib.parse.quote(provder_stats)
|
||||
|
||||
oembed_url = (
|
||||
f"{HOST}/owoembed?"
|
||||
f"author_id={author_id}&"
|
||||
f"author_id={author_id if author_id else ''}&"
|
||||
f"author_name={author_name_encoded}&"
|
||||
f"video_id={video_id}&"
|
||||
f"provider={provider_stats_encoded}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user