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:56:39 +01:00
parent 6b87c472da
commit a5a5940cf9
1 changed files with 0 additions and 4 deletions

View 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>';