diff --git a/jslib b/jslib index fc5fcb905f..cb7336c0e8 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit fc5fcb905fe465e99e85540f6b645c0f11b6704d +Subproject commit cb7336c0e8ae1f0f74c76a4d6704555cc7440a3b diff --git a/src/program.ts b/src/program.ts index 20df039aae..97b0f64e71 100644 --- a/src/program.ts +++ b/src/program.ts @@ -95,7 +95,7 @@ export class Program { .option('--check', 'Check login status.', async () => { const authed = await this.main.userService.isAuthenticated(); if (authed) { - const res = new StringResponse('You are logged in!'); + const res = new MessageResponse('You are logged in!', null); this.processResponse(Response.success(res), true); } this.processResponse(Response.error('You are not logged in.'), true);