4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-06-26 16:39:24 +00:00

Use mediaserver urls for irc,gitter and xmpp

This commit is contained in:
Wim
2017-11-24 22:55:24 +01:00
parent 1efe40add5
commit 7ec95f786d
3 changed files with 32 additions and 4 deletions

View File

@ -184,13 +184,11 @@ func (b *Birc) Send(msg config.Message) (string, error) {
fi := f.(config.FileInfo)
if fi.URL != "" {
msg.Text = fi.URL
b.Local <- config.Message{Text: msg.Text, Username: msg.Username, Channel: msg.Channel, Event: msg.Event}
} else {
b.Local <- config.Message{Text: msg.Text, Username: msg.Username, Channel: msg.Channel, Event: msg.Event}
}
b.Local <- config.Message{Text: msg.Text, Username: msg.Username, Channel: msg.Channel, Event: msg.Event}
}
return "", nil
}
return "", nil
}
for _, text := range strings.Split(msg.Text, "\n") {