mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-08 22:18:28 +03:00
Resolve #471 by extending fetch messagelist to 60 seconds and handling timeout/abort
This commit is contained in:
parent
31b12c3625
commit
2c4bd445a5
3 changed files with 4 additions and 4 deletions
|
|
@ -175,7 +175,7 @@ export class AbstractFetchRemote
|
|||
)
|
||||
.catch(err => {
|
||||
console.error(err);
|
||||
fCallback && fCallback(err.name == 'AbortError' ? 2 : 1);
|
||||
fCallback && fCallback(err.name == 'AbortError' ? 2 : 1, err);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue