From f45f6ba992d7382abb742b0fb24021ba9c29afe4 Mon Sep 17 00:00:00 2001 From: loma-one Date: Wed, 6 Dec 2023 18:00:35 +0100 Subject: [PATCH] https://youtu.be Link Many thanks for the hint. With a small change '/watch?v=' the link to https://youtu.be now also works --- invidious/invidious.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/invidious/invidious.php b/invidious/invidious.php index a92c49a6..821d904c 100644 --- a/invidious/invidious.php +++ b/invidious/invidious.php @@ -46,9 +46,9 @@ function invidious_render(array &$b) // this needs to be a system setting $replaced = false; $invidious = DI::config()->get('invidious', 'server', 'https://invidio.us'); - if (strstr($b['html'], 'https://www.youtube.com')) { - $b['html'] = str_replace(['https://www.youtube.com', 'https://youtube.com'], $invidious, $b['html']); - $replaced = true; + if (strpos($b['html'], 'https://www.youtube.com/') !== false || strpos($b['html'], 'https://youtube.com/') !== false || strpos($b['html'], 'https://youtu.be/') !== false) { + $b['html'] = str_replace('https://youtu.be/', $invidious . '/watch?v=', $b['html']); + $b['html'] = str_replace(['https://www.youtube.com/', 'https://youtube.com/'], $invidious . '/', $b['html']); } if ($replaced) { $b['html'] .= '

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

';