mirror of https://gitlab.com/bashrc2/epicyon
Extra search for youtube urls
parent
267d4054a1
commit
f5f5c17e54
15
youtube.py
15
youtube.py
|
@ -42,6 +42,21 @@ def get_youtube(actor_json: {}) -> str:
|
|||
continue
|
||||
youtube_text = property_value[prop_value_name]
|
||||
return remove_html(youtube_text)
|
||||
|
||||
for property_value in actor_json['attachment']:
|
||||
if not property_value.get('type'):
|
||||
continue
|
||||
prop_value_name, _ = \
|
||||
get_attachment_property_value(property_value)
|
||||
if not prop_value_name:
|
||||
continue
|
||||
if not property_value['type'].endswith('PropertyValue'):
|
||||
continue
|
||||
youtube_text = property_value[prop_value_name]
|
||||
if 'youtube.com' not in youtube_text:
|
||||
continue
|
||||
return remove_html(youtube_text)
|
||||
|
||||
return ''
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue