Merge pull request #121 from mlaventure/only-send-live-if-needed

Send "live" event only if past events requested
This commit is contained in:
Michael Crosby 2016-02-29 11:25:51 -08:00
commit 8d2051232a

View file

@ -169,12 +169,12 @@ func (s *Supervisor) Events(from time.Time) chan Event {
c <- e c <- e
} }
} }
}
// Notify the client that from now on it's live events // Notify the client that from now on it's live events
c <- Event{ c <- Event{
Type: "live", Type: "live",
Timestamp: time.Now(), Timestamp: time.Now(),
} }
}
return c return c
} }