From: loma-one Date: Sun, 3 Dec 2023 17:54:39 +0000 (+0100) Subject: invidious/invidious.php aktualisiert X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0f65c2349040eff6ecee294f8262faf6a3ddb11c;p=friendica-addons.git invidious/invidious.php aktualisiert Redirects from youtu.be do not work reliably. Therefore this one has been removed. --- diff --git a/invidious/invidious.php b/invidious/invidious.php index 4ff57fc0..c647fd1b 100644 --- a/invidious/invidious.php +++ b/invidious/invidious.php @@ -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'] .= '

' . DI::l10n()->t('(Invidious addon enabled: YouTube links via %s)', $invidious) . '

';