From 25d09e8cf13304ee1466274f766d9a83f3e69a36 Mon Sep 17 00:00:00 2001 From: nineven Date: Tue, 15 Feb 2022 23:27:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=B0=8F=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fir_ser/common/core/sysconfig.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fir_ser/common/core/sysconfig.py b/fir_ser/common/core/sysconfig.py index 4a99d2d..6c57446 100644 --- a/fir_ser/common/core/sysconfig.py +++ b/fir_ser/common/core/sysconfig.py @@ -313,15 +313,15 @@ class AppleDeveloperConfCache(ConfigCacheBase): @property def DEVELOPER_AUTO_CHECK_STATUS(self): - return super().get_value('SENDER', APPLEDEVELOPERCONF.DEVELOPER_AUTO_CHECK_STATUS) + return super().get_value('DEVELOPER_AUTO_CHECK_STATUS', APPLEDEVELOPERCONF.DEVELOPER_AUTO_CHECK_STATUS) @property def DEVELOPER_WRITE_STATUS(self): - return super().get_value('SENDER', APPLEDEVELOPERCONF.DEVELOPER_WRITE_STATUS) + return super().get_value('DEVELOPER_WRITE_STATUS', APPLEDEVELOPERCONF.DEVELOPER_WRITE_STATUS) @property def DEVELOPER_DISABLED_STATUS(self): - return super().get_value('SENDER', APPLEDEVELOPERCONF.DEVELOPER_DISABLED_STATUS) + return super().get_value('DEVELOPER_DISABLED_STATUS', APPLEDEVELOPERCONF.DEVELOPER_DISABLED_STATUS) class ConfigCache(BaseConfCache, IpaConfCache, AuthConfCache, EmailMsgCache, UserDownloadTimesCache, GeeTestConfCache,