mirror of https://gitlab.com/bashrc2/epicyon
Handle peertube videos path
parent
a41b0e6d31
commit
4f201ae658
|
@ -176,8 +176,13 @@ def _add_embedded_video_from_sites(translate: {}, content: str,
|
||||||
if '/c/' in url:
|
if '/c/' in url:
|
||||||
# don't try to embed peertube channel page
|
# don't try to embed peertube channel page
|
||||||
continue
|
continue
|
||||||
url = url.replace('/w/', '/embed/')
|
if '/w/' in url:
|
||||||
|
if '/videos/' not in url:
|
||||||
|
url = url.replace('/w/', '/videos/embed/')
|
||||||
|
else:
|
||||||
|
url = url.replace('/w/', '/embed/')
|
||||||
url = url.replace('/watch/', '/embed/')
|
url = url.replace('/watch/', '/embed/')
|
||||||
|
|
||||||
content += \
|
content += \
|
||||||
"<center>\n<iframe loading=\"lazy\" " + \
|
"<center>\n<iframe loading=\"lazy\" " + \
|
||||||
"sandbox=\"allow-same-origin " + \
|
"sandbox=\"allow-same-origin " + \
|
||||||
|
|
Loading…
Reference in New Issue