fix(webui): respond with 200 for successful shard operations
All checks were successful
Build / build (push) Successful in 53s
Build / build (pull_request) Successful in 1m31s

This commit is contained in:
Sainan 2025-06-16 17:29:05 +02:00
parent b98a88b700
commit dd0574dabc
2 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,7 @@ export const popArchonCrystalUpgradeController: RequestHandler = async (req, res
); );
await inventory.save(); await inventory.save();
res.end(); res.end();
return;
} }
res.status(400).end(); res.status(400).end();
}; };

View File

@ -15,6 +15,7 @@ export const pushArchonCrystalUpgradeController: RequestHandler = async (req, re
} }
await inventory.save(); await inventory.save();
res.end(); res.end();
return;
} }
} }
res.status(400).end(); res.status(400).end();