diff --git a/xmpp/client.go b/xmpp/client.go index 0b8dc68..aa73b1d 100644 --- a/xmpp/client.go +++ b/xmpp/client.go @@ -79,6 +79,8 @@ func (c *Client) Connect() (*Session, error) { // We're connected and can now receive and send messages. //fmt.Fprintf(client.conn, "%s%s", "chat", "Online") + // TODO: Do we always want to send initial presence automatically ? + // Do we need an option to avoid that or do we rely on client to send the presence itself ? fmt.Fprintf(c.Session.socketProxy, "") return c.Session, err