From 6291abf83ef806289c3ab7018811152d0f3275bb Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Wed, 5 Oct 2022 11:39:25 +0200 Subject: [PATCH] Resolve #487 --- dev/Remote/AbstractFetch.js | 1 + 1 file changed, 1 insertion(+) diff --git a/dev/Remote/AbstractFetch.js b/dev/Remote/AbstractFetch.js index a90f27f8f..e5c18431f 100644 --- a/dev/Remote/AbstractFetch.js +++ b/dev/Remote/AbstractFetch.js @@ -49,6 +49,7 @@ fetchJSON = (action, sGetAdd, params, timeout, jsonCallback) => { } else { params.Action = action; } + // Don't abort, read https://github.com/the-djmaze/snappymail/issues/487 // abort(action); const controller = new AbortController(), signal = controller.signal;