From: Brion Vibber Date: Thu, 7 Oct 2010 17:56:10 +0000 (-0700) Subject: Fix regression in OStatus remote group delivery: local group check was bogus in updat... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a9654beb5d7506e7594fd88ce2739d993e27e982;p=quix0rs-gnu-social.git Fix regression in OStatus remote group delivery: local group check was bogus in updated Ostatus_profile::localGroupFromUrl() --- diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index 3cd29aff71..9c6696439a 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -966,7 +966,7 @@ class OStatusPlugin extends Plugin { $group = User_group::staticGet('uri', $url); if ($group) { - $local = Local_group::staticGet('id', $group->id); + $local = Local_group::staticGet('group_id', $group->id); if ($local) { return $group->id; }