Cleanup some exported methods

This commit is contained in:
Gabe Kangas
2021-01-01 15:39:41 -08:00
parent 3c7997b75e
commit bda430f791
2 changed files with 5 additions and 15 deletions

View File

@@ -56,7 +56,7 @@ func (s *server) err(err error) {
func (s *server) sendAll(msg models.ChatEvent) {
for _, c := range s.Clients {
c.Write(msg)
c.write(msg)
}
}
@@ -85,7 +85,7 @@ func (s *server) onConnection(ws *websocket.Conn) {
}()
s.add(client)
client.Listen()
client.listen()
}
// Listen and serve.
@@ -154,6 +154,6 @@ func (s *server) sendWelcomeMessageToClient(c *Client) {
initialChatMessageText := fmt.Sprintf("Welcome to %s! %s", config.Config.InstanceDetails.Title, config.Config.InstanceDetails.Summary)
initialMessage := models.ChatEvent{ClientID: "owncast-server", Author: config.Config.InstanceDetails.Name, Body: initialChatMessageText, ID: "initial-message-1", MessageType: "SYSTEM", Visible: true, Timestamp: time.Now()}
c.Write(initialMessage)
c.write(initialMessage)
}()
}