diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-24 02:19:13 +0000 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-24 02:20:31 +0000 |
commit | 2e58802cc9959763f28e2f43c8e0cd0dbe7bcd8e (patch) | |
tree | 0849a577eda6ffa3491a7b80f5573ddddd0b9462 /plugins/OStatus/actions/groupsalmon.php | |
parent | 868ae8e62ba2f4c320080213c6cf1d3221240c73 (diff) |
OStatus: fix group delivery, send reply/group Salmon pings from background.
Diffstat (limited to 'plugins/OStatus/actions/groupsalmon.php')
-rw-r--r-- | plugins/OStatus/actions/groupsalmon.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/plugins/OStatus/actions/groupsalmon.php b/plugins/OStatus/actions/groupsalmon.php index 2e4fe9443..29377b5fa 100644 --- a/plugins/OStatus/actions/groupsalmon.php +++ b/plugins/OStatus/actions/groupsalmon.php @@ -46,6 +46,11 @@ class GroupsalmonAction extends SalmonAction $this->clientError(_('No such group.')); } + $oprofile = Ostatus_profile::staticGet('group_id', $id); + if ($oprofile) { + $this->clientError(_m("Can't accept remote posts for a remote group.")); + } + return true; } @@ -74,13 +79,13 @@ class GroupsalmonAction extends SalmonAction throw new ClientException("Not to the attention of anyone."); } else { $uri = common_local_url('groupbyid', array('id' => $this->group->id)); - if (!in_array($context->attention, $uri)) { + if (!in_array($uri, $context->attention)) { throw new ClientException("Not to the attention of this group."); } } $profile = $this->ensureProfile(); - // @fixme save the post + $this->saveNotice(); } /** |