invidious/invidious.php aktualisiert

Redirects from youtu.be do not work reliably. Therefore this one has been removed.
This commit is contained in:
loma-one 2023-12-03 18:54:39 +01:00
parent f52c69ebaa
commit 9f5da18020

View file

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