From: Hank Grabowski Date: Mon, 27 Feb 2023 03:56:56 +0000 (-0500) Subject: Change Mastodon Instance V2 active_monthly field to correct active_month X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=706a42ffd0bdff937a3977b2f2bf82c9e8636f7c;p=friendica.git Change Mastodon Instance V2 active_monthly field to correct active_month --- diff --git a/src/Object/Api/Mastodon/InstanceV2/UserStats.php b/src/Object/Api/Mastodon/InstanceV2/UserStats.php index 8f398e0d5a..34fb3a6556 100644 --- a/src/Object/Api/Mastodon/InstanceV2/UserStats.php +++ b/src/Object/Api/Mastodon/InstanceV2/UserStats.php @@ -31,13 +31,13 @@ use Friendica\BaseDataTransferObject; class UserStats extends BaseDataTransferObject { /** @var int */ - protected $active_monthly = 0; + protected $active_month = 0; /** * @param $active_monthly */ - public function __construct($active_monthly) + public function __construct($active_month) { - $this->active_monthly = $active_monthly; + $this->active_month = $active_month; } }