]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix regression in OStatus remote group delivery: local group check was bogus in updat...
authorBrion Vibber <brion@pobox.com>
Thu, 7 Oct 2010 17:56:10 +0000 (10:56 -0700)
committerBrion Vibber <brion@pobox.com>
Thu, 7 Oct 2010 17:56:10 +0000 (10:56 -0700)
plugins/OStatus/OStatusPlugin.php

index 3cd29aff71fbcc08b38cfee803c7ff5be909a91b..9c6696439ae4db3cdd87a03aaa173b24fd0770b6 100644 (file)
@@ -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;
             }