Apply fixes from StyleCI
This commit is contained in:
parent
18ee579b63
commit
5c420dd827
@ -16,6 +16,7 @@ class Exception extends \Exception
|
||||
{
|
||||
use TL\PrettyException;
|
||||
public static $rollbar = true;
|
||||
|
||||
public function __toString()
|
||||
{
|
||||
return $this->file === 'MadelineProto' ? $this->message : '\danog\MadelineProto\Exception'.($this->message !== '' ? ': ' : '').$this->message.' in '.$this->file.':'.$this->line.PHP_EOL.'TL Trace (YOU ABSOLUTELY MUST READ THE TEXT BELOW):'.PHP_EOL.$this->getTLTrace();
|
||||
@ -45,7 +46,9 @@ class Exception extends \Exception
|
||||
if (strpos($message, 'pg_query') !== false || strpos($message, 'Undefined variable: ') !== false || strpos($message, 'socket_write') !== false || strpos($message, 'socket_read') !== false || strpos($message, 'Received request to switch to DC ') !== false || strpos($message, "Couldn't get response") !== false || strpos($message, 'Re-executing query...') !== false || strpos($message, "Couldn't find peer by provided") !== false || strpos($message, 'id.pwrtelegram.xyz') !== false || strpos($message, 'Please update ') !== false || strpos($message, 'posix_isatty') !== false) {
|
||||
return;
|
||||
}
|
||||
if (self::$rollbar) \Rollbar\Rollbar::log(\Rollbar\Payload\Level::error(), $this, debug_backtrace(0));
|
||||
if (self::$rollbar) {
|
||||
\Rollbar\Rollbar::log(\Rollbar\Payload\Level::error(), $this, debug_backtrace(0));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -98,7 +98,9 @@ class RPCErrorException extends \Exception
|
||||
if ($this->rpc !== $message) {
|
||||
$this->fetched = true;
|
||||
}
|
||||
if (!self::$rollbar) return;
|
||||
if (!self::$rollbar) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (in_array($this->rpc, ['CHANNEL_PRIVATE', -404, -429, 'USERNAME_NOT_OCCUPIED', 'ACCESS_TOKEN_INVALID', 'AUTH_KEY_UNREGISTERED', 'SESSION_PASSWORD_NEEDED', 'PHONE_NUMBER_UNOCCUPIED', 'PEER_ID_INVALID', 'CHAT_ID_INVALID', 'USERNAME_INVALID', 'CHAT_WRITE_FORBIDDEN', 'CHAT_ADMIN_REQUIRED', 'PEER_FLOOD'])) {
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user