diff --git a/doc/_common.py b/doc/_common.py index 0defa232..736a11a1 100644 --- a/doc/_common.py +++ b/doc/_common.py @@ -1618,5 +1618,5 @@ class MFRoomReportTeam(object): ['pve_wave', 0, 'pve波次'], ['pve_max_wave', 0, 'pve最大波次'], - ['!members', [_common.TeamReportMember()], '成员数据'], + ['!members', [TeamReportMember()], '成员数据'], ] diff --git a/webapp/controller/BaseController.class.php b/webapp/controller/BaseController.class.php index aed2c97d..7c4bd9ab 100644 --- a/webapp/controller/BaseController.class.php +++ b/webapp/controller/BaseController.class.php @@ -229,7 +229,8 @@ class BaseController { public function _isAndroidAccountId($accountId) { - return false; + $channel = phpcommon\extractChannel($accountId); + return $channel == "0000"; } }