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:
|
if not params:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
author_id = params.get('owner', {}).get('id')
|
author_id = None
|
||||||
author_name = params.get('owner', {}).get('nickname')
|
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')
|
video_id = params.get('video', {}).get('id')
|
||||||
|
|
||||||
if not video_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"
|
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}"
|
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)
|
provider_stats_encoded = urllib.parse.quote(provder_stats)
|
||||||
|
|
||||||
oembed_url = (
|
oembed_url = (
|
||||||
f"{HOST}/owoembed?"
|
f"{HOST}/owoembed?"
|
||||||
f"author_id={author_id}&"
|
f"author_id={author_id if author_id else ''}&"
|
||||||
f"author_name={author_name_encoded}&"
|
f"author_name={author_name_encoded}&"
|
||||||
f"video_id={video_id}&"
|
f"video_id={video_id}&"
|
||||||
f"provider={provider_stats_encoded}"
|
f"provider={provider_stats_encoded}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user