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) . '

';