From: Mikael Nordfeldth Date: Sat, 28 Jun 2014 10:58:24 +0000 (+0200) Subject: Bad error message in atompubmembershipfeed X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7642f008fb58b5025b93f58b2663ff9f4d161edf;p=quix0rs-gnu-social.git Bad error message in atompubmembershipfeed --- diff --git a/actions/atompubmembershipfeed.php b/actions/atompubmembershipfeed.php index e5ca8b0a5a..2ebd45bc80 100644 --- a/actions/atompubmembershipfeed.php +++ b/actions/atompubmembershipfeed.php @@ -237,15 +237,13 @@ class AtompubmembershipfeedAction extends ApiAuthAction if ($activity->verb != ActivityVerb::JOIN) { // TRANS: Client error displayed when not using the join verb. throw new ClientException(_('Can only handle join activities.')); - return; } $groupObj = $activity->objects[0]; if ($groupObj->type != ActivityObject::GROUP) { - // TRANS: Client exception thrown when trying favorite an object that is not a notice. - throw new ClientException(_('Can only fave notices.')); - return; + // TRANS: Client exception thrown when trying to join something which is not a group + throw new ClientException(_('Can only join groups.')); } $group = User_group::getKV('uri', $groupObj->id);