fix: remove manifest_id from scene publish (field not in collection)

This commit is contained in:
2026-07-27 10:29:54 +08:00
parent cc04897d17
commit 003c303231
+1 -1
View File
@@ -800,7 +800,7 @@ async def api_market_publish_local(data: dict):
headers={"Authorization": f"Bearer {token}"}, headers={"Authorization": f"Bearer {token}"},
data={"name": scene.get("name",""), "description": scene.get("description",""), data={"name": scene.get("name",""), "description": scene.get("description",""),
"game_id": scene.get("game_id",""), "author": scene.get("author",""), "game_id": scene.get("game_id",""), "author": scene.get("author",""),
"dashb_pending": "true", "manifest_id": scene.get("id","")}, "dashb_pending": "true"},
files={"file": (f"{dash_id}.tss", zip_data, "application/zip")}, files={"file": (f"{dash_id}.tss", zip_data, "application/zip")},
) )
return resp.json() return resp.json()