From 637b6f5a170ee793160ea05ea2ae629154cb4652 Mon Sep 17 00:00:00 2001 From: Hank Grabowski Date: Wed, 15 Feb 2023 12:30:49 -0500 Subject: [PATCH] Change FollowRequest to return the user ID so is compatible with POST endpoint --- src/Object/Api/Mastodon/FollowRequest.php | 2 -- 1 file changed, 2 deletions(-) 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; } }