From 9224ca32730712bd9086413131ce4a84b047da36 Mon Sep 17 00:00:00 2001 From: Louis Chmn Date: Fri, 6 Feb 2026 18:04:18 +0100 Subject: [PATCH] fix(files): Do not show abort error to the user Signed-off-by: Louis Chmn --- apps/files/src/utils/davUtils.ts | 4 ++++ 1 file changed, 4 insertions(+) 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 }) }