Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/components/Mailbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -587,8 +587,13 @@ export default {
},

async loadMailbox() {
// When the account is unified or inbox, return nothing, else sync the mailbox
if (this.account.isUnified || this.mailbox.specialRole === 'inbox') {
// Unified mailboxes combine multiple real mailboxes and don't map
// to the single-folder sync this method calls, so they're still
// skipped here. The INBOX itself has no such reason to be
// skipped: every other folder gets this periodic background
// refresh, but the INBOX previously only ever synced once, on
// mount, and never again for as long as the view stayed open.
if (this.account.isUnified) {
return
}
try {
Expand Down