(account, errorMessage)
| 1510 | } |
| 1511 | |
| 1512 | function buildHotmailMailApiFailureAccount(account, errorMessage) { |
| 1513 | return normalizeHotmailAccount({ |
| 1514 | ...account, |
| 1515 | status: 'error', |
| 1516 | lastError: String(errorMessage || ''), |
| 1517 | }); |
| 1518 | } |
| 1519 | |
| 1520 | async function fetchHotmailMailboxMessagesFromRemoteService(account, mailboxes = HOTMAIL_MAILBOXES) { |
| 1521 | let workingAccount = normalizeHotmailAccount(account); |
no test coverage detected