forked from jshiffer/go-xmpp
improve no more auth err msg (#176)
Improve error message when no viable authentication method is available
This commit is contained in:
parent
e7d5b17113
commit
8531e2e36a
2
xmpp.go
2
xmpp.go
@ -681,7 +681,7 @@ func (c *Client) init(o *Options) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if mechanism == "" {
|
if mechanism == "" {
|
||||||
return fmt.Errorf("PLAIN authentication is not an option: %v", f.Mechanisms.Mechanism)
|
return fmt.Errorf("no viable authentication method available: %v", f.Mechanisms.Mechanism)
|
||||||
}
|
}
|
||||||
// Next message should be either success or failure.
|
// Next message should be either success or failure.
|
||||||
name, val, err := next(c.p)
|
name, val, err := next(c.p)
|
||||||
|
Loading…
Reference in New Issue
Block a user