From: Hank Grabowski Date: Wed, 15 Feb 2023 17:30:49 +0000 (-0500) Subject: Change FollowRequest to return the user ID so is compatible with POST endpoint X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=637b6f5a170ee793160ea05ea2ae629154cb4652;p=friendica.git Change FollowRequest to return the user ID so is compatible with POST endpoint --- diff --git a/src/Object/Api/Mastodon/FollowRequest.php b/src/Object/Api/Mastodon/FollowRequest.php index f401cad488..ea5dfac29d 100644 --- a/src/Object/Api/Mastodon/FollowRequest.php +++ b/src/Object/Api/Mastodon/FollowRequest.php @@ -43,7 +43,5 @@ class FollowRequest extends Account public function __construct(BaseURL $baseUrl, int $introduction_id, array $account) { parent::__construct($baseUrl, $account, new Fields()); - - $this->id = $introduction_id; } }