mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-03-12 16:04:35 +08:00
fix(tags): Don't request unread count for *
This commit is contained in:
parent
a764c160d1
commit
115f0b7735
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ AccountSidebarStore = Reflux.createStore
|
|||
section.tags.forEach (tag) =>
|
||||
if tag.id is "drafts"
|
||||
@_populateDraftsCount(tag)
|
||||
else if tag.id in ['drafts', 'sent', 'archive', 'trash']
|
||||
else if tag.id in ['drafts', 'sent', 'archive', 'trash', '*']
|
||||
return
|
||||
else
|
||||
# Make a web request for unread count
|
||||
|
|
Loading…
Reference in a new issue