mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-11 02:30:21 +08:00
[client-sync] Make imap ended error retryable
Summary: This error should really be retryable, and will prevent more red boxes Test Plan: manual Reviewers: evan, spang Reviewed By: evan, spang Differential Revision: https://phab.nylas.com/D3982
This commit is contained in:
parent
d415e7792e
commit
7fa5e2fb3f
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class IMAPConnectionNotReadyError extends RetryableError {
|
|||
}
|
||||
}
|
||||
|
||||
class IMAPConnectionEndedError extends NylasError {
|
||||
class IMAPConnectionEndedError extends RetryableError {
|
||||
constructor(msg = "The IMAP Connection was ended.") {
|
||||
super(msg);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue