Skip to content

Commit 1453767

Browse files
Bugfixes2 (#1246)
* Improve error DB error handling. * Several fixes * Fix error
1 parent f4e9960 commit 1453767

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/app/shared/state/contents.state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ export abstract class ContentsStateBase extends State<Snapshot> {
411411
const error = errors[0].error!;
412412

413413
if (errors.length >= contents.length) {
414-
throw error;
414+
throw error.toError();
415415
} else {
416416
this.dialogs.notifyError(error.toError());
417417
}

0 commit comments

Comments
 (0)