Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/studio-web/src/app/upload/upload.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ Please check it to make sure all words are spelled out completely, e.g. write "4
}
return throwError(() => err);
} else {
return of(err);
return throwError(() => err);
Copy link
Copy Markdown
Collaborator

@roedoejet roedoejet Jun 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm. but doesn't this cause retry to trigger? I'll test this.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yea, on my machine this triggers the error message three times since any error thrown will cause retry to trigger:

image

}
}),
retry(2),
Expand Down