]> git.mxchange.org Git - friendica-addons.git/commitdiff
https://youtu.be Link
authorloma-one <loma-one@noreply.git.friendi.ca>
Wed, 6 Dec 2023 17:00:35 +0000 (18:00 +0100)
committerHypolite Petovan <hypolite@mrpetovan.com>
Fri, 8 Dec 2023 19:50:22 +0000 (20:50 +0100)
Many thanks for the hint. With a small change '/watch?v=' the link to https://youtu.be now also works

invidious/invidious.php

index a92c49a6710cc68066713202bc622fceb8b9f0d9..821d904cf5ec09251c3ad914de4c23e988df4316 100644 (file)
@@ -46,9 +46,9 @@ function invidious_render(array &$b)
     // this needs to be a system setting
     $replaced = false;
     $invidious = DI::config()->get('invidious', 'server', 'https://invidio.us');
-    if (strstr($b['html'], 'https://www.youtube.com')) {
-        $b['html'] = str_replace(['https://www.youtube.com', 'https://youtube.com'], $invidious, $b['html']);
-        $replaced = true;
+    if (strpos($b['html'], 'https://www.youtube.com/') !== false || strpos($b['html'], 'https://youtube.com/') !== false || strpos($b['html'], 'https://youtu.be/') !== false) {
+    $b['html'] = str_replace('https://youtu.be/', $invidious . '/watch?v=', $b['html']);
+    $b['html'] = str_replace(['https://www.youtube.com/', 'https://youtube.com/'], $invidious . '/', $b['html']);
     }
     if ($replaced) {
         $b['html'] .= '<hr><p><small>' . DI::l10n()->t('(Invidious addon enabled: YouTube links via %s)', $invidious) . '</small></p>';