Skip to content

Commit

Permalink
Fix autoupdate errors with ok status (#3570)
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianjoel authored and Magnus Schieder committed Apr 17, 2024
1 parent ea6e29c commit 4664c1b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/src/app/worker/http/http-stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ export abstract class HttpStream {

if (data instanceof ErrorDescription || isCommunicationError(data) || isCommunicationErrorWrapper(data)) {
this.handleError(data);
} else if (isCommunicationError(this.parse(data)) || isCommunicationErrorWrapper(this.parse(data))) {
this.handleError(this.parse(data));
} else {
data = this.parse(data);
this.failedCounter = 0;
Expand Down

0 comments on commit 4664c1b

Please sign in to comment.