mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-16 16:53:59 +00:00
https://youtu.be Link
Many thanks for the hint. With a small change '/watch?v=' the link to https://youtu.be now also works
This commit is contained in:
parent
26983977c4
commit
f45f6ba992
1 changed files with 3 additions and 3 deletions
|
@ -46,9 +46,9 @@ function invidious_render(array &$b)
|
||||||
// this needs to be a system setting
|
// this needs to be a system setting
|
||||||
$replaced = false;
|
$replaced = false;
|
||||||
$invidious = DI::config()->get('invidious', 'server', 'https://invidio.us');
|
$invidious = DI::config()->get('invidious', 'server', 'https://invidio.us');
|
||||||
if (strstr($b['html'], 'https://www.youtube.com')) {
|
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://www.youtube.com', 'https://youtube.com'], $invidious, $b['html']);
|
$b['html'] = str_replace('https://youtu.be/', $invidious . '/watch?v=', $b['html']);
|
||||||
$replaced = true;
|
$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