Browse Source

Bugfixes2 (#1246)

* Improve error DB error handling.

* Several fixes

* Fix error
pull/1249/head
Sebastian Stehle 9 months ago
committed by GitHub
parent
commit
14537676ca
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      frontend/src/app/shared/state/contents.state.ts

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

@ -411,7 +411,7 @@ export abstract class ContentsStateBase extends State<Snapshot> {
const error = errors[0].error!;
if (errors.length >= contents.length) {
throw error;
throw error.toError();
} else {
this.dialogs.notifyError(error.toError());
}

Loading…
Cancel
Save