bump irc-go for the IRCMessage rename

This commit is contained in:
Shivaram Lingamneni 2021-02-15 11:27:04 -05:00
parent 2fbbfb1337
commit e957a89ee2
13 changed files with 119 additions and 117 deletions

View file

@ -42,7 +42,7 @@ type MessageCache struct {
splitMessage utils.SplitMessage
}
func addAllTags(msg *ircmsg.IrcMessage, tags map[string]string, serverTime time.Time, msgid, accountName string) {
func addAllTags(msg *ircmsg.IRCMessage, tags map[string]string, serverTime time.Time, msgid, accountName string) {
msg.UpdateTags(tags)
msg.SetTag("time", serverTime.Format(IRCv3TimestampFormat))
if accountName != "*" {
@ -73,7 +73,7 @@ func (m *MessageCache) Initialize(server *Server, serverTime time.Time, msgid st
m.command = command
m.params = params
var msg ircmsg.IrcMessage
var msg ircmsg.IRCMessage
config := server.Config()
if config.Server.Compatibility.forceTrailing && commandsThatMustUseTrailing[command] {
msg.ForceTrailing()
@ -110,7 +110,7 @@ func (m *MessageCache) InitializeSplitMessage(server *Server, nickmask, accountN
if message.Is512() {
isTagmsg := command == "TAGMSG"
var msg ircmsg.IrcMessage
var msg ircmsg.IRCMessage
if forceTrailing {
msg.ForceTrailing()
}
@ -136,7 +136,7 @@ func (m *MessageCache) InitializeSplitMessage(server *Server, nickmask, accountN
return
}
} else {
var msg ircmsg.IrcMessage
var msg ircmsg.IRCMessage
if forceTrailing {
msg.ForceTrailing()
}