diff options
Diffstat (limited to 'src/Bridge.php')
-rw-r--r-- | src/Bridge.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/Bridge.php b/src/Bridge.php index 0125363..b428fff 100644 --- a/src/Bridge.php +++ b/src/Bridge.php @@ -71,16 +71,14 @@ class Bridge { return $rows; } - public function registerMessage($postId, $messageId, - $inReplyTo, $references) { + public function registerMessage($postId, $messageId, $inReplyTo) { throw_if_null($messageId); $sql = 'INSERT IGNORE INTO posts ' . - '(post_id, message_id, in_reply_to, refs) ' . + '(post_id, message_id, in_reply_to) ' . 'VALUES (' . ($postId === null ? 'NULL' : $postId) . ', ' . $this->db->quote($messageId) . ', ' - . $this->quote($inReplyTo) . ', ' - . $this->quote($references) . ')'; + . $this->quote($inReplyTo) . ')'; $count = $this->db->exec($sql); return $count == 1; |