From 14537676caaf3ce1cb69da9261fa86c43d150c2c Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Thu, 28 Aug 2025 08:25:51 +0200 Subject: [PATCH] Bugfixes2 (#1246) * Improve error DB error handling. * Several fixes * Fix error --- frontend/src/app/shared/state/contents.state.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/shared/state/contents.state.ts b/frontend/src/app/shared/state/contents.state.ts index 1b083bcac..264ad36c5 100644 --- a/frontend/src/app/shared/state/contents.state.ts +++ b/frontend/src/app/shared/state/contents.state.ts @@ -411,7 +411,7 @@ export abstract class ContentsStateBase extends State { const error = errors[0].error!; if (errors.length >= contents.length) { - throw error; + throw error.toError(); } else { this.dialogs.notifyError(error.toError()); }