From d2756e6f2d97e484c09000da701bfffa523a9cec Mon Sep 17 00:00:00 2001 From: cikezhu <604054726@qq.com> Date: Mon, 1 Sep 2025 17:39:46 +0800 Subject: [PATCH] =?UTF-8?q?schedule()=20#=20=E8=BF=99=E4=BC=9A=E8=BF=94?= =?UTF-8?q?=E5=9B=9E=E4=B8=80=E4=B8=AA=E5=8D=8F=E7=A8=8B=E5=AF=B9=E8=B1=A1?= =?UTF-8?q?=EF=BC=8C=E4=BD=86=E6=88=91=E4=BB=AC=E6=B2=A1=E6=9C=89=E7=AD=89?= =?UTF-8?q?=E5=BE=85=E5=AE=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/endpoints/dashboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/endpoints/dashboard.py b/app/api/endpoints/dashboard.py index 8fbdf6ac..c0a00c96 100644 --- a/app/api/endpoints/dashboard.py +++ b/app/api/endpoints/dashboard.py @@ -123,7 +123,7 @@ async def schedule2(_: Annotated[str, Depends(verify_apitoken)]) -> Any: """ 查询下载器信息 API_TOKEN认证(?token=xxx) """ - return schedule() + return await schedule() @router.get("/transfer", summary="文件整理统计", response_model=List[int])