Skip to content

Commit 3f99c28

Browse files
committed
Library update all don't suppress retry error like 403
#1950
1 parent 55c9e55 commit 3f99c28

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

plugin/js/ErrorLog.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ class ErrorLog {
1111

1212
static showErrorMessage(msg) {
1313
// if already showing an error message, queue the new one to display
14-
// when currently showing is closed.
15-
if (this.SuppressErrorLog) {
14+
// when currently showing is closed.
15+
if (this.SuppressErrorLog && msg.retryAction == null) {
1616
return;
1717
}
1818
ErrorLog.queue.push(msg);

0 commit comments

Comments
 (0)