feat: rename is_image to has_thumbnail in VfsEntry and update related logic

This commit is contained in:
ShiYu
2025-10-18 16:12:55 +08:00
parent c14224827d
commit 11799cd97c
6 changed files with 14 additions and 11 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ class VfsEntry(BaseModel):
size: int
mtime: int
type: Optional[str] = None
is_image: Optional[bool] = None
has_thumbnail: Optional[bool] = None
class DirListing(BaseModel):