mirror of https://gitlab.com/bashrc2/epicyon
Ensure that there are no scripts lurking within quoted urls
parent
b97d35d07e
commit
c9dde86e52
4
utils.py
4
utils.py
|
@ -4786,7 +4786,7 @@ def get_quote_toot_url(post_json_object: str) -> str:
|
||||||
if item.get('href'):
|
if item.get('href'):
|
||||||
if isinstance(item['href'], str):
|
if isinstance(item['href'], str):
|
||||||
if resembles_url(item['href']):
|
if resembles_url(item['href']):
|
||||||
return item['href']
|
return remove_html(item['href'])
|
||||||
if not item.get('type'):
|
if not item.get('type'):
|
||||||
continue
|
continue
|
||||||
if not item.get('mediaType'):
|
if not item.get('mediaType'):
|
||||||
|
@ -4802,7 +4802,7 @@ def get_quote_toot_url(post_json_object: str) -> str:
|
||||||
if item.get('href'):
|
if item.get('href'):
|
||||||
if isinstance(item['href'], str):
|
if isinstance(item['href'], str):
|
||||||
if resembles_url(item['href']):
|
if resembles_url(item['href']):
|
||||||
return item['href']
|
return remove_html(item['href'])
|
||||||
return ''
|
return ''
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue