From: Brion Vibber Date: Tue, 29 Jun 2010 14:31:30 +0000 (-0400) Subject: Fix regression in OStatus remote group subscribe -- a bug was previously masked silen... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=21f253c5845eb17b7aa599b030855324caf9f312;p=quix0rs-gnu-social.git Fix regression in OStatus remote group subscribe -- a bug was previously masked silently (call to nonexistent getProfileUrl() method on User_group -- now replaced with homeUrl() which does the thing we wanted here) --- diff --git a/plugins/OStatus/actions/ostatusgroup.php b/plugins/OStatus/actions/ostatusgroup.php index f325ba0532..1b368de63c 100644 --- a/plugins/OStatus/actions/ostatusgroup.php +++ b/plugins/OStatus/actions/ostatusgroup.php @@ -104,7 +104,7 @@ class OStatusGroupAction extends OStatusSubAction } $this->showEntity($group, - $group->getProfileUrl(), + $group->homeUrl(), $group->homepage_logo, $group->description); return $ok;