Change Mastodon Instance V2 active_monthly field to correct active_month
This commit is contained in:
parent
de53109a49
commit
706a42ffd0
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue