Improve errors in crypto stuff
This commit is contained in:
parent
996fe62a21
commit
b3b7b70480
@ -21,6 +21,8 @@ package matrix
|
||||
import (
|
||||
"path/filepath"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
|
||||
"maunium.net/go/mautrix/crypto"
|
||||
|
||||
"maunium.net/go/gomuks/debug"
|
||||
@ -51,12 +53,12 @@ func isBadEncryptError(err error) bool {
|
||||
func (c *Container) initCrypto() error {
|
||||
cryptoStore, err := crypto.NewGobStore(filepath.Join(c.config.DataDir, "crypto.gob"))
|
||||
if err != nil {
|
||||
return err
|
||||
return errors.Wrap(err, "failed to open crypto store")
|
||||
}
|
||||
c.crypto = crypto.NewOlmMachine(c.client, cryptoLogger{}, cryptoStore, c.config.Rooms)
|
||||
err = c.crypto.Load()
|
||||
if err != nil {
|
||||
return err
|
||||
return errors.Wrap(err, "failed to create olm machine")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
@ -115,7 +115,7 @@ func (c *Container) InitClient() error {
|
||||
var err error
|
||||
c.client, err = mautrix.NewClient(c.config.HS, mxid, accessToken)
|
||||
if err != nil {
|
||||
return err
|
||||
return errors.Wrap(err, "failed to create mautrix client")
|
||||
}
|
||||
c.client.UserAgent = fmt.Sprintf("gomuks %s (with mautrix-go %s)", c.gmx.Version(), mautrix.Version)
|
||||
c.client.Logger = mxLogger{}
|
||||
@ -123,7 +123,7 @@ func (c *Container) InitClient() error {
|
||||
|
||||
err = c.initCrypto()
|
||||
if err != nil {
|
||||
return err
|
||||
return errors.Wrap(err, "failed to initialize crypto")
|
||||
}
|
||||
|
||||
if c.history == nil {
|
||||
|
Loading…
Reference in New Issue
Block a user