We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 658750d commit 3b97af6Copy full SHA for 3b97af6
src/DB.php
@@ -626,9 +626,9 @@ public static function insertMessageRequest(Message &$message)
626
$sth->bindParam(':date', $date, \PDO::PARAM_STR);
627
$sth->bindParam(':forward_from', $forward_from, \PDO::PARAM_INT);
628
$sth->bindParam(':forward_date', $forward_date, \PDO::PARAM_STR);
629
- $reply_chat_id = null;
+ $reply_chat_id = null;
630
if ($reply_to_message_id) {
631
- $reply_chat_id = $chat_id;
+ $reply_chat_id = $chat_id;
632
}
633
$sth->bindParam(':reply_to_chat', $reply_chat_id, \PDO::PARAM_INT);
634
$sth->bindParam(':reply_to_message', $reply_to_message_id, \PDO::PARAM_INT);
0 commit comments