Skip to content

Commit

Permalink
geosolutions-it#10577: Fix - GFI in identify popup does not trigger w…
Browse files Browse the repository at this point in the history
…hen one of the responses is an error (geosolutions-it#10578) (geosolutions-it#10591)

(cherry picked from commit 64474f4)
  • Loading branch information
dsuren1 authored Oct 8, 2024
1 parent c9b1a9e commit 118fc2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const withIdentifyRequest = mapPropsStream(props$ => {
}
})
)
.catch((e) => ({
.catch((e) => Observable.of({
error: e.data || e.statusText || e.status,
reqId,
queryParams,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const withIdentifyRequest = mapPropsStream(props$ => {
})
) : Observable.empty()
)
.catch((e) => ({
.catch((e) => Observable.of({
error: e.data || e.statusText || e.status,
reqId,
queryParams,
Expand Down

0 comments on commit 118fc2e

Please sign in to comment.