Browse Source
Bugfixes2 (#1246)
* Improve error DB error handling.
* Several fixes
* Fix error
pull/1249/head
Sebastian Stehle
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
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()); |
|
|
|
} |
|
|
|
|