From b434be2fd1792df04ec96711f4172f3ceb465395 Mon Sep 17 00:00:00 2001 From: AskaEth Date: Sun, 26 Jul 2026 21:54:42 +0800 Subject: [PATCH] fix: dashb_pending boolean as string for form data --- server/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/api.py b/server/api.py index 593b738..12fdf95 100644 --- a/server/api.py +++ b/server/api.py @@ -586,7 +586,7 @@ async def api_market_upload(file: UploadFile = File(...), name: str = "", catego data={ "name": actual_name, "category": actual_category, "author": actual_author, "version": actual_version, "supported_games": supported, - "icon": icon, "description": desc, "dashb_pending": True, + "icon": icon, "description": desc, "dashb_pending": "true", }, files={"file": (file.filename, zip_data, file.content_type)}, )