From 9fd1c961e4893f196bd5aa782035cd38680a050a Mon Sep 17 00:00:00 2001 From: yrx Date: Wed, 13 May 2026 18:46:22 +0800 Subject: [PATCH] always send iccid --- network.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/network.py b/network.py index 50eb831..bb37cd7 100644 --- a/network.py +++ b/network.py @@ -402,8 +402,8 @@ class NetworkManager: bool: 本次登录是否携带了 iccid(即成功后需要创建标记文件) """ marker_path = os.path.join(config.APP_DIR, "iccid") - if os.path.exists(marker_path): - return False + # if os.path.exists(marker_path): + ## return False iccid_val = self.get_4g_mccid() login_data["iccid"] = iccid_val if iccid_val is not None else "" return True