mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-09 02:41:22 +08:00
fix(character): check type before access
Check type before access relic's values in validator.
This commit is contained in:
parent
2137332b7e
commit
2894966b6c
@ -142,8 +142,9 @@ class Character(BaseModel):
|
||||
@root_validator(pre=True)
|
||||
def dict_to_list(cls, data: dict[str, Any]):
|
||||
# The keys of the original dict is not necessary, so remove them here.
|
||||
if data.get("relic") is not None:
|
||||
data["relic"] = list(data["relic"].values())
|
||||
if isinstance(data, dict) and data.get("relic") is not None:
|
||||
if isinstance(data["relic"], dict):
|
||||
data["relic"] = list(data["relic"].values())
|
||||
return data
|
||||
|
||||
@property
|
||||
|
Loading…
Reference in New Issue
Block a user