We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66eae14 commit 1a81215Copy full SHA for 1a81215
core/storages/alist.py
@@ -90,7 +90,7 @@ async def getFileList(dir: str, pbar: tqdm) -> List[FileInfo]:
90
return FileList(files=missing_files)
91
92
async def measure(self, size: int, request: web.Request, response):
93
- file_path = f"{self.path}/.{size}"
+ file_path = f"{self.path}/measure/.{size}"
94
try:
95
async with aiohttp.ClientSession(self.url, headers=self.headers) as session:
96
response = await session.post("/api/fs/get", json={"path": file_path, "password": self.password})
0 commit comments