improved error handling in jsonrpc2 client

This commit is contained in:
Bernhard B
2021-10-10 18:42:39 +02:00
parent 0023ebaf83
commit 094e42059d
2 changed files with 3 additions and 3 deletions

View File

@@ -317,7 +317,7 @@ func (s *SignalClient) Init() error {
return err
}
go s.jsonRpc2Clients[number].ReceiveData() //receive messages in goroutine
go s.jsonRpc2Clients[number].ReceiveData(number) //receive messages in goroutine
}
}
return nil