Skip to content

Commit 3b97af6

Browse files
committed
fix cs
1 parent 658750d commit 3b97af6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DB.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -626,9 +626,9 @@ public static function insertMessageRequest(Message &$message)
626626
$sth->bindParam(':date', $date, \PDO::PARAM_STR);
627627
$sth->bindParam(':forward_from', $forward_from, \PDO::PARAM_INT);
628628
$sth->bindParam(':forward_date', $forward_date, \PDO::PARAM_STR);
629-
$reply_chat_id = null;
629+
$reply_chat_id = null;
630630
if ($reply_to_message_id) {
631-
$reply_chat_id = $chat_id;
631+
$reply_chat_id = $chat_id;
632632
}
633633
$sth->bindParam(':reply_to_chat', $reply_chat_id, \PDO::PARAM_INT);
634634
$sth->bindParam(':reply_to_message', $reply_to_message_id, \PDO::PARAM_INT);

0 commit comments

Comments
 (0)