Skip to content

Commit c106383

Browse files
uspilotTiiFuchs
authored andcommitted
Update Telegram.php
Added check NULL update object when execute command without update using $telegram->executeCommand('command') function. This would prevent fatal error caused coming from NULL object used as an argument in setUpdate() method.
1 parent 728f2f5 commit c106383

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Telegram.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,11 @@ public function executeCommand(string $command): ServerResponse
682682
} else {
683683
//execute() method is executed after preExecute()
684684
//This is to prevent executing a DB query without a valid connection
685-
$this->last_command_response = $command_obj->setUpdate($this->update)->preExecute();
685+
if ($this->update) {
686+
$this->last_command_response = $command_obj->setUpdate($this->update)->preExecute();
687+
} else {
688+
$this->last_command_response = $command_obj->preExecute();
689+
}
686690
}
687691

688692
return $this->last_command_response;

0 commit comments

Comments
 (0)