Skip to content
Snippets Groups Projects
Commit b68b8966 authored by Jono Wenger's avatar Jono Wenger
Browse files

Fix group chat integration

parent 3fb02744
Branches
Tags
1 merge request!23Release
...@@ -38,14 +38,14 @@ var groupCmd = &cobra.Command{ ...@@ -38,14 +38,14 @@ var groupCmd = &cobra.Command{
_, _ = initClientCallbacks(client) _, _ = initClientCallbacks(client)
// Initialize the group chat manager
groupManager, recChan, reqChan := initGroupManager(client)
_, err := client.StartNetworkFollower(5 * time.Second) _, err := client.StartNetworkFollower(5 * time.Second)
if err != nil { if err != nil {
jww.FATAL.Panicf("%+v", err) jww.FATAL.Panicf("%+v", err)
} }
// Initialize the group chat manager
groupManager, recChan, reqChan := initGroupManager(client)
// Wait until connected or crash on timeout // Wait until connected or crash on timeout
connected := make(chan bool, 10) connected := make(chan bool, 10)
client.GetHealth().AddChannel(connected) client.GetHealth().AddChannel(connected)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment