]> git.mxchange.org Git - friendica-addons.git/commitdiff
invidious/invidious.php aktualisiert
authorloma-one <loma-one@noreply.git.friendi.ca>
Sun, 3 Dec 2023 17:54:39 +0000 (18:54 +0100)
committerHypolite Petovan <hypolite@mrpetovan.com>
Fri, 8 Dec 2023 19:50:22 +0000 (20:50 +0100)
Redirects from youtu.be do not work reliably. Therefore this one has been removed.

invidious/invidious.php

index 4ff57fc049c3d21c4b150f03f2a66a4cef6c8b3d..c647fd1b79f852404822356b60b6b085a86b00f5 100644 (file)
@@ -53,10 +53,6 @@ function invidious_render(array &$b)
         if (strstr($b['html'], 'https://youtube.com')) {
         $b['html'] = str_replace('https://youtube.com', $invidious, $b['html']);
         $replaced = true;
-    }
-        if (strstr($b['html'], 'https://youtu.be')) {
-        $b['html'] = str_replace('https://youtu.be', $invidious, $b['html']);
-        $replaced = true;
     }
     if ($replaced) {
         $b['html'] .= '<hr><p><small>' . DI::l10n()->t('(Invidious addon enabled: YouTube links via %s)', $invidious) . '</small></p>';