diff options
author | Evan Prodromou <evan@status.net> | 2010-02-21 23:56:48 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-02-21 23:56:48 -0500 |
commit | 891e0028838e51788e917d947cc280dbd53c1792 (patch) | |
tree | 0ab5fa9da85ae90ca99a2479b31325c82ebcd65f /lib/distribqueuehandler.php | |
parent | a9599d53c5e33eff2927f02393b9ae6984ba3a6e (diff) |
don't calculate replies for remote notices
Diffstat (limited to 'lib/distribqueuehandler.php')
-rw-r--r-- | lib/distribqueuehandler.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/distribqueuehandler.php b/lib/distribqueuehandler.php index 4477468d0..c31b675c1 100644 --- a/lib/distribqueuehandler.php +++ b/lib/distribqueuehandler.php @@ -75,7 +75,7 @@ class DistribQueueHandler } try { - $recipients = $notice->saveReplies(); + $recipients = $notice->getReplies(); } catch (Exception $e) { $this->logit($notice, $e); } @@ -107,7 +107,7 @@ class DistribQueueHandler return true; } - + protected function logit($notice, $e) { common_log(LOG_ERR, "Distrib queue exception saving notice $notice->id: " . |