4.5探索;fix (#394)

This commit is contained in:
Ca(HCO₃)₂ 2024-03-27 06:43:13 +08:00 committed by GitHub
parent 0f0d6a2fac
commit d027783241
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
# 成就 # 成就
achievement: 1185 achievement: 1188
# 角色数 # 角色数
avatar: 79 avatar: 80
# 等级 # 等级
level: 60 level: 60
@ -14,10 +14,10 @@ magic_chest: 241
luxurious_chest: 259 luxurious_chest: 259
# 珍贵宝箱 # 珍贵宝箱
precious_chest: 682 precious_chest: 683
# 精致宝箱 # 精致宝箱
exquisite_chest: 2219 exquisite_chest: 2221
# 普通宝箱 # 普通宝箱
common_chest: 2980 common_chest: 2980

View File

@ -92,7 +92,7 @@ export default class MysApi {
headers = { ...headers, ...data.headers } headers = { ...headers, ...data.headers }
} }
if (type !== 'getFp' && !headers['x-rpc-device_fp'] && this._device_fp.data.device_fp) { if (type !== 'getFp' && !headers['x-rpc-device_fp'] && this._device_fp.data?.device_fp) {
headers['x-rpc-device_fp'] = this._device_fp.data.device_fp headers['x-rpc-device_fp'] = this._device_fp.data.device_fp
} }