nitter: the nitter instance base url should not contain the trailing /

This commit is contained in:
Tobias Diekershoff 2021-08-18 19:11:23 +02:00
parent b78c8a30f6
commit 81fce72efe
1 changed files with 3 additions and 0 deletions

View File

@ -38,6 +38,9 @@ function nitter_install()
function nitter_addon_admin_post(App $a)
{
$nitterserver = trim($_POST['nitterserver']);
if ((substr($apiurl, -1) == '/')) {
$apiurl = substr($apiurl, 0, -1);
}
DI::config()->set('nitter', 'server', $nitterserver);
}