mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-06 20:54:26 +08:00
[client-app] Fix references to RetryableError imports
Summary: See title Test Plan: manual Reviewers: spang, mark Reviewed By: mark Differential Revision: https://phab.nylas.com/D4292
This commit is contained in:
parent
caac7cd247
commit
c7e4c2bb87
2 changed files with 3 additions and 6 deletions
|
@ -1,9 +1,6 @@
|
|||
const _ = require('underscore');
|
||||
|
||||
const {
|
||||
RetryableError,
|
||||
IMAPConnectionNotReadyError,
|
||||
} = require('./imap-errors');
|
||||
const {RetryableError} = require('./errors')
|
||||
const {IMAPConnectionNotReadyError} = require('./imap-errors');
|
||||
|
||||
/*
|
||||
IMAPBox uses Proxy to wrap the "box" exposed by node-imap. It provides higher-level
|
||||
|
|
|
@ -5,9 +5,9 @@ import EventEmitter from 'events';
|
|||
import CommonProviderSettings from 'imap-provider-settings';
|
||||
import PromiseUtils from './promise-utils';
|
||||
import IMAPBox from './imap-box';
|
||||
import {RetryableError} from './errors'
|
||||
import {
|
||||
convertImapError,
|
||||
RetryableError,
|
||||
IMAPConnectionTimeoutError,
|
||||
IMAPConnectionNotReadyError,
|
||||
IMAPConnectionEndedError,
|
||||
|
|
Loading…
Add table
Reference in a new issue