Compare commits

...

2 Commits

Author SHA1 Message Date
dami 275f2515d6 优化 2026-05-01 19:17:05 +08:00
dami b4604928ec Update panel_task.py 2026-05-01 18:53:42 +08:00
4 changed files with 4 additions and 4 deletions

View File

@ -183,7 +183,7 @@ def check502():
verlist = [
'52', '53', '54', '55', '56', '70',
'71', '72', '73', '74', '80', '81',
'82', '83', '84'
'82', '83', '84', '85'
]
for ver in verlist:
server_dir = mw.getServerDir()

View File

@ -80,7 +80,7 @@ def status(version):
sock文件判断是否启动
'''
sock = getPhpSocket(version)
if sock.find(':'):
if sock.find(':')>-1:
return status_progress(version)
if not os.path.exists(sock):

View File

@ -109,7 +109,7 @@ def status(version):
sock文件判断是否启动
'''
sock = getPhpSocket(version)
if sock.find(':'):
if sock.find(':')>-1:
return status_progress(version)
if not os.path.exists(sock):

View File

@ -74,7 +74,7 @@ def status(version):
sock文件判断是否启动
'''
sock = getPhpSocket(version)
if sock.find(':'):
if sock.find(':')>-1:
return status_progress(version)
if not os.path.exists(sock):