From 0f65c2349040eff6ecee294f8262faf6a3ddb11c Mon Sep 17 00:00:00 2001 From: loma-one Date: Sun, 3 Dec 2023 18:54:39 +0100 Subject: [PATCH] invidious/invidious.php aktualisiert Redirects from youtu.be do not work reliably. Therefore this one has been removed. --- invidious/invidious.php | 4 ---- 1 file changed, 4 deletions(-) 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) . '

';