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 /plugins | |
parent | a9599d53c5e33eff2927f02393b9ae6984ba3a6e (diff) |
don't calculate replies for remote notices
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/OStatus/lib/salmonaction.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/OStatus/lib/salmonaction.php b/plugins/OStatus/lib/salmonaction.php index b128cbd13..4aba20cc4 100644 --- a/plugins/OStatus/lib/salmonaction.php +++ b/plugins/OStatus/lib/salmonaction.php @@ -182,7 +182,8 @@ class SalmonAction extends Action $options = array('is_local' => Notice::REMOTE_OMB, 'uri' => $this->act->object->id, 'url' => $this->act->object->link, - 'rendered' => $rendered); + 'rendered' => $rendered, + 'replies' => $this->act->context->attention); if (!empty($this->act->context->location)) { $options['lat'] = $location->lat; |