fix(telegram): trim username for convenience #4520 (#4521)

This commit is contained in:
Dag 2025-04-16 02:47:57 +02:00 committed by GitHub
parent a6ee840533
commit 0d20a8c48c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -400,7 +400,9 @@ EOD;
private function normalizeUsername()
{
return ltrim($this->getInput('username'), '@');
$username = trim($this->getInput('username'));
return ltrim($username, '@');
}
public function detectParameters($url)