aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/UserController.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controllers/Http/UserController.ts')
-rw-r--r--app/Controllers/Http/UserController.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Controllers/Http/UserController.ts b/app/Controllers/Http/UserController.ts
index 667786b..bcf0171 100644
--- a/app/Controllers/Http/UserController.ts
+++ b/app/Controllers/Http/UserController.ts
@@ -292,7 +292,8 @@ export default class UsersController {
292 'x-franz-source': 'Web', 292 'x-franz-source': 'Web',
293 }, 293 },
294 }); 294 });
295 const content = await rawResponse.json(); 295 // eslint-disable-next-line @typescript-eslint/no-explicit-any
296 const content: any = await rawResponse.json();
296 297
297 if (!content.message || content.message !== 'Successfully logged in') { 298 if (!content.message || content.message !== 'Successfully logged in') {
298 const errorMessage = 299 const errorMessage =