Don't show AbortErrors on logout (#29639) (#29667)

Backport https://github.com/go-gitea/gitea/pull/29639.

When logging out of Gitea, a error toast can be seen for a split second.
I don't know why or how it happens but I found it it's an `AbortError`
(related to
[AbortController#abort](https://developer.mozilla.org/en-US/docs/Web/API/AbortController/abort)),
so let's hide it.
This commit is contained in:
silverwind 2024-03-09 10:22:18 +01:00 committed by GitHub
parent 25b0c99a41
commit 346b662305
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -101,9 +101,11 @@ async function fetchActionDoRequest(actionElem, url, opt) {
showErrorToast(`server error: ${resp.status}`);
}
} catch (e) {
console.error('error when doRequest', e);
actionElem.classList.remove('is-loading', 'small-loading-icon');
showErrorToast(i18n.network_error);
if (e.name !== 'AbortError') {
console.error('error when doRequest', e);
showErrorToast(i18n.network_error);
}
}
}