Skip to content

Commit

Permalink
fix(AlistPath): 修复 hash_info 正确类型
Browse files Browse the repository at this point in the history
  • Loading branch information
Akimio521 committed Dec 4, 2024
1 parent b7627c1 commit 71d73d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/modules/alist/v3/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class AlistPath(BaseModel):
sign: str = "" # 签名
thumb: str = "" # 缩略图
type: int = "" # 类型
hashinfo: str = "null" # 哈希信息
hash_info: str | None = None # 哈希信息
hashinfo: str = "null" # 哈希信息(字符串)
hash_info: dict = {} # 哈希信息(键值对)
raw_url: str = "" # 原始地址
readme: str = "" # Readme 地址
header: str = "" # 头部信息
Expand Down

0 comments on commit 71d73d8

Please sign in to comment.