mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-06-26 08:39:24 +00:00
Update matterbridge/go-xmpp vendor (#1559)
This commit is contained in:
10
vendor/github.com/matterbridge/go-xmpp/xmpp.go
generated
vendored
10
vendor/github.com/matterbridge/go-xmpp/xmpp.go
generated
vendored
@ -335,13 +335,19 @@ func (c *Client) init(o *Options) error {
|
||||
var domain string
|
||||
var user string
|
||||
a := strings.SplitN(o.User, "@", 2)
|
||||
if len(o.User) > 0 {
|
||||
// Check if User is not empty. Otherwise, we'll be attempting ANONYMOUS with Host domain.
|
||||
switch {
|
||||
case len(o.User) > 0:
|
||||
if len(a) != 2 {
|
||||
return errors.New("xmpp: invalid username (want user@domain): " + o.User)
|
||||
}
|
||||
user = a[0]
|
||||
domain = a[1]
|
||||
} // Otherwise, we'll be attempting ANONYMOUS
|
||||
case strings.Contains(o.Host, ":"):
|
||||
domain = strings.SplitN(o.Host, ":", 2)[0]
|
||||
default:
|
||||
domain = o.Host
|
||||
}
|
||||
|
||||
// Declare intent to be a jabber client and gather stream features.
|
||||
f, err := c.startStream(o, domain)
|
||||
|
2
vendor/modules.txt
vendored
2
vendor/modules.txt
vendored
@ -146,7 +146,7 @@ github.com/matterbridge/Rocket.Chat.Go.SDK/rest
|
||||
# github.com/matterbridge/discordgo v0.21.2-0.20210201201054-fb39a175b4f7
|
||||
## explicit
|
||||
github.com/matterbridge/discordgo
|
||||
# github.com/matterbridge/go-xmpp v0.0.0-20200418225040-c8a3a57b4050
|
||||
# github.com/matterbridge/go-xmpp v0.0.0-20210731150933-5702291c239f
|
||||
## explicit
|
||||
github.com/matterbridge/go-xmpp
|
||||
# github.com/matterbridge/gozulipbot v0.0.0-20200820220548-be5824faa913
|
||||
|
Reference in New Issue
Block a user