- diff --git a/src/util/util.go b/src/util/util.go
- index 0a60e45..a55de0c 100644
- --- a/src/util/util.go
- +++ b/src/util/util.go
- @@ -39,6 +39,7 @@ func MsgBuffer(ch chan core.Msg) chan core.Msg {
- if msg != nil {
- buf = append(buf, next) // Save in queue
- } else if len(buf) > 0 {
- + buf = append(buf, next)
- msg = buf[0] // Buf has messages, pop the next in queue
- buf = buf[1:len(buf)]
- } else {