diff --git "a/src/api/routes/applications/\043id/bot/index.ts" "b/src/api/routes/applications/\043id/bot/index.ts" index 8090794..ad2399b 100644 --- "a/src/api/routes/applications/\043id/bot/index.ts" +++ "b/src/api/routes/applications/\043id/bot/index.ts" @@ -74,7 +74,7 @@ }); router.patch("/", route({}), async (req: Request, res: Response) => { - delete req.body.icon; + delete req.body.avatar; let app = OrmUtils.mergeDeep(await User.findOne({where: {id: req.params.id}}), req.body); await app.save(); res.json(app).status(200);