summaryrefslogtreecommitdiff
path: root/src/Bridge.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Bridge.php')
-rw-r--r--src/Bridge.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Bridge.php b/src/Bridge.php
index 8ea229a..8b04f03 100644
--- a/src/Bridge.php
+++ b/src/Bridge.php
@@ -27,7 +27,7 @@ class Bridge {
throw_if_null($postId);
$sql = 'SELECT message_id FROM posts ' .
- 'WHERE post_id = ' . $this->db->quote($postId);
+ 'WHERE post_id = ' . $postId;
$row = $this->get_exactly_one_row($sql);
return $row ? $row['message_id'] : false;