diff --git a/src/Squidex/app/framework/angular/http/http-extensions.ts b/src/Squidex/app/framework/angular/http/http-extensions.ts index e5607c58d..1dcd87c3e 100644 --- a/src/Squidex/app/framework/angular/http/http-extensions.ts +++ b/src/Squidex/app/framework/angular/http/http-extensions.ts @@ -83,7 +83,7 @@ export const pretifyError = (message: string) => (source: Observable) => let errorDto = Types.isObject(response.error) ? response.error : JSON.parse(response.error); if (!errorDto) { - errorDto = { message: 'Failed to make the request.', details: [] }; + errorDto = { message: 'Failed to make the request.', details: [response] }; } if (response.status === 412) {