diff --git a/src/commands/sync.command.ts b/src/commands/sync.command.ts index d7c198715e8..8a4006f24df 100644 --- a/src/commands/sync.command.ts +++ b/src/commands/sync.command.ts @@ -15,11 +15,11 @@ export class SyncCommand { } try { - const result = await this.syncService.fullSync(cmd.force || false); + const result = await this.syncService.fullSync(cmd.force || false, true); const res = new MessageResponse('Syncing complete.', null); return Response.success(res); } catch (e) { - return Response.error(e); + return Response.error('Syncing failed: ' + e.toString()); } }