Fix syntax mistake

This commit is contained in:
Daniil Gentili 2018-03-03 15:42:25 +01:00
parent ec0a5e4190
commit 606e55d8c6

View File

@ -561,7 +561,7 @@ trait PeerHandler
try {
$res = $this->method_call('contacts.resolveUsername', ['username' => str_replace('@', '', $username)], ['datacenter' => $this->datacenter->curdc]);
} catch (\danog\MadelineProto\RPCErrorException $e) {
\danog\MadelineProto\Logger::('Username resolution failed with error '.$e->getMessage(), \danog\MadelineProto\Logger::ERROR);
\danog\MadelineProto\Logger::log('Username resolution failed with error '.$e->getMessage(), \danog\MadelineProto\Logger::ERROR);
return false;
}
if ($res['_'] === 'contacts.resolvedPeer') {