mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-03 06:32:06 +08:00
fix(notifications): > 5 should be >= 5
This commit is contained in:
parent
b52077c1c3
commit
12e692a26c
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ module.exports =
|
|||
Actions.setFocus(collection: 'thread', item: thread)
|
||||
|
||||
_notifyMessages: ->
|
||||
if @stack.length > 5
|
||||
if @stack.length >= 5
|
||||
@_notifyAll()
|
||||
else if @stack.length > 0
|
||||
@_notifyOne(@stack.pop())
|
||||
|
|
Loading…
Reference in a new issue