don't push messages with IDs to the channel

This commit is contained in:
finn 2022-03-15 19:04:35 -07:00
parent 8bb40967e5
commit 9c8c2f98a9

View file

@ -125,7 +125,7 @@ func (s *Signald) Listen(c chan client_protocol.BasicResponse) {
subscribers <- msg
}
if c != nil {
if c != nil && msg.ID == "" {
c <- msg
}
}