Apply fixes from StyleCI

This commit is contained in:
Daniil Gentili 2018-02-18 17:26:34 +00:00 committed by StyleCI Bot
parent f0939e3725
commit c0e4afc646
2 changed files with 5 additions and 2 deletions

View File

@ -578,10 +578,13 @@ trait PeerHandler
{
try {
$res = $this->method_call('contacts.resolveUsername', ['username' => str_replace('@', '', $username)], ['datacenter' => $this->datacenter->curdc]);
} catch (\danog\MadelineProto\RPCErrorException $e) { return false; }
} catch (\danog\MadelineProto\RPCErrorException $e) {
return false;
}
if ($res['_'] === 'contacts.resolvedPeer') {
return $res;
}
return false;
}