Handle peertube videos path

merge-requests/30/head
Bob Mottram 2022-02-22 12:03:56 +00:00
parent a41b0e6d31
commit 4f201ae658
1 changed files with 6 additions and 1 deletions

View File

@ -176,8 +176,13 @@ def _add_embedded_video_from_sites(translate: {}, content: str,
if '/c/' in url:
# don't try to embed peertube channel page
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/')
content += \
"<center>\n<iframe loading=\"lazy\" " + \
"sandbox=\"allow-same-origin " + \