Unkown -> unkown (typo fix)

This commit is contained in:
Rory&
2025-10-03 20:53:24 +02:00
parent 5295a0b563
commit 625df4e314
4 changed files with 4 additions and 4 deletions

View File

@@ -61,7 +61,7 @@ router.patch(
}),
async (req: Request, res: Response) => {
const body = req.body as UserSettingsSchema;
if (body.locale === "en") body.locale = "en-US"; // fix discord client crash on unkown locale
if (body.locale === "en") body.locale = "en-US"; // fix discord client crash on unknown locale
const user = await User.findOneOrFail({
where: { id: req.user_id, bot: false },