forked from friendica/friendica-addons
invidious/invidious.php aktualisiert
This commit is contained in:
parent
f45f6ba992
commit
372e75a91c
|
@ -47,8 +47,8 @@ function invidious_render(array &$b)
|
||||||
$replaced = false;
|
$replaced = false;
|
||||||
$invidious = DI::config()->get('invidious', 'server', 'https://invidio.us');
|
$invidious = DI::config()->get('invidious', 'server', 'https://invidio.us');
|
||||||
if (strpos($b['html'], 'https://www.youtube.com/') !== false || strpos($b['html'], 'https://youtube.com/') !== false || strpos($b['html'], 'https://youtu.be/') !== false) {
|
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://youtu.be/', $invidious . '/watch?v=', $b['html']);
|
||||||
$b['html'] = str_replace(['https://www.youtube.com/', 'https://youtube.com/'], $invidious . '/', $b['html']);
|
$b['html'] = str_replace(['https://www.youtube.com/', 'https://youtube.com/'], $invidious . '/', $b['html']);
|
||||||
}
|
}
|
||||||
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>';
|
||||||
|
|
Loading…
Reference in a new issue