修复绑定

This commit is contained in:
CMHopeSunshine 2022-03-21 08:40:13 +08:00
parent 1cd38eab6e
commit e43778dbad

View File

@ -97,7 +97,7 @@ async def get_monthinfo_data(uid, month, cookie, use_cache=True):
return await res.json()
async def get_bind_game(cookie):
finduid = re.search(r'account_id=(\d{9})', cookie)
finduid = re.search(r'account_id=(\d{6,12})', cookie)
if not finduid:
return None
uid = finduid.group(1)