diff --git a/apps/files/src/utils/davUtils.ts b/apps/files/src/utils/davUtils.ts index ae10f5438fa41..4ea851d2a20c3 100644 --- a/apps/files/src/utils/davUtils.ts +++ b/apps/files/src/utils/davUtils.ts @@ -37,6 +37,10 @@ export function humanizeWebDAVError(error: unknown) { return t('files', 'Storage is temporarily not available') } } + // We don't need to show abortion error to the user as those are expected. + if (error.name === 'AbortError') { + return null + } return t('files', 'Unexpected error: {error}', { error: error.message }) }