[F] Fix username check

This commit is contained in:
Azalea
2025-01-05 05:21:47 -05:00
parent 7ad4bc2ba5
commit 51af357c5a
3 changed files with 4 additions and 4 deletions

View File

@@ -310,4 +310,6 @@ export const SETTING = {
post('/api/v2/settings/get', {}),
set: (key: string, value: any) =>
post('/api/v2/settings/set', { key, value: `${value}` }),
detailSet: (game: string, field: string, value: any) =>
post(`/api/v2/game/${game}/user-detail-set`, { field, value }),
}