Do not send user joined events to chat clients if stream is not active. Closes #750

This commit is contained in:
Gabe Kangas
2021-02-21 16:21:12 -08:00
parent b47589fa8f
commit 0bfd9f8e1f
3 changed files with 10 additions and 3 deletions

View File

@@ -5,4 +5,5 @@ type ChatListener interface {
ClientAdded(client Client)
ClientRemoved(clientID string)
MessageSent(message ChatEvent)
IsStreamConnected() bool
}