Increment heartbeat counter

This commit is contained in:
Sam
2019-07-02 17:01:25 -04:00
parent dcd697b559
commit d05601455b

View File

@ -211,5 +211,6 @@ func heartbeat(c chan<- ChatIn, freq time.Duration) {
time.Sleep(freq) time.Sleep(freq)
m.Msg.ID = count m.Msg.ID = count
c <- m c <- m
count++
} }
} }