This addon will replace "youtube.com" with the chosen Invidious instance #1441

Merged
MrPetovan merged 19 commits from :develop into 2023.09-rc 2023-12-08 20:50:23 +01:00
Showing only changes of commit a6ae4309e5 - Show all commits

View file

@ -50,7 +50,7 @@ function invidious_render(array &$b)
$b['html'] = str_replace('https://www.youtube.com', $invidious, $b['html']);
$replaced = true;
}
if (strstr($b['html'], 'https://youtube.com')) {
if (strstr($b['html'], 'https://youtube.com')) {
$b['html'] = str_replace('https://youtube.com', $invidious, $b['html']);
$replaced = true;
}