From 4b4e62ca51e37170dc07a20dc30012181dc3cc70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=AC=E9=97=B4=E7=99=BD=E7=8C=AB?= <139044047+honmashironeko@users.noreply.github.com> Date: Fri, 3 Jan 2025 17:24:58 +0800 Subject: [PATCH] Update --- modules/modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/modules.py b/modules/modules.py index 03448a8..8ea6a67 100644 --- a/modules/modules.py +++ b/modules/modules.py @@ -325,7 +325,7 @@ async def check_for_updates(language='cn'): response = await asyncio.wait_for(client.get("https://y.shironekosan.cn/1.html"), timeout=10) response.raise_for_status() content = response.text - match = re.search(r'

(ProxyCat-V\d+\.\d+)

', content) + match = re.search(r'

(ProxyCat-V\d+\.\d+\.\d+)

', content) if match: latest_version = match.group(1) CURRENT_VERSION = "ProxyCat-V1.9.2"