Skip to content

Commit

Permalink
fix: one msg notify twice error
Browse files Browse the repository at this point in the history
  • Loading branch information
agalwood committed Feb 18, 2019
1 parent 70cf36d commit e293b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/Msg/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default {
queue.unshift(task)

if (queue.length === 1) {
queue[0].run()
queue.pop().run()
}
}
}
Expand Down

0 comments on commit e293b16

Please sign in to comment.