Change Mastodon Instance V2 active_monthly field to correct active_month

This commit is contained in:
Hank Grabowski 2023-02-26 22:56:56 -05:00
parent de53109a49
commit 706a42ffd0
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}
}