summaryrefslogtreecommitdiff
path: root/src/Bridge.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Bridge.php')
-rw-r--r--src/Bridge.php16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/Bridge.php b/src/Bridge.php
index 9d59564..8ea229a 100644
--- a/src/Bridge.php
+++ b/src/Bridge.php
@@ -71,27 +71,13 @@ class Bridge {
return $rows;
}
- public function registerMessage($messageId, $inReplyTo, $references) {
- throw_if_null($messageId);
-
- $sql = 'INSERT IGNORE INTO posts ' .
- '(message_id, in_reply_to, refs) ' .
- 'VALUES (' . $this->db->quote($messageId) . ', '
- . $this->quote($inReplyTo) . ', '
- . $this->quote($references) . ')';
-
- $count = $this->db->exec($sql);
- return $count == 1;
- }
-
public function registerMessage($postId, $messageId,
$inReplyTo, $references) {
- throw_if_null($postId);
throw_if_null($messageId);
$sql = 'INSERT IGNORE INTO posts ' .
'(post_id, message_id, in_reply_to, refs) ' .
- 'VALUES (' . $postId . ', '
+ 'VALUES (' . ($postId === null ? 'NULL' : $postId) . ', '
. $this->db->quote($messageId) . ', '
. $this->quote($inReplyTo) . ', '
. $this->quote($references) . ')';