fix: correct thumbnail path resolution to use upload_path instead of upload_folder

This commit is contained in:
retoor 2024-12-03 21:02:53 +00:00
parent 879a42039d
commit 65f596c51c

View File

@ -277,7 +277,7 @@ async def handle_thumbnail(request: web.Request):
return web.Response(status=400, text="Invalid file type.")
thumbnail_path = pathlib.Path(request.app.upload_folder).joinpath(".thumbnail").joinpath(pathlib.Path(safe_path).name)
thumbnail_path = pathlib.Path(request.app.upload_path).joinpath(".thumbnail").joinpath(pathlib.Path(safe_path).name)
if not thumbnail_path.parent.exists():
thumbnail_path.parent.mkdir(exist_ok=True,parents=False)