Compare commits

..

No commits in common. "f5fe993105445f528a60da21c6e7497939b5cc9c" and "6930389a398995244547c57373c74a69d0e7da1b" have entirely different histories.

View File

@ -221,8 +221,6 @@ func (b *Bot) HandleWebSocketResponse(event *model.WebSocketEvent) {
return
}
// FIXME check for parts and joins and whatnot and ignore those
// check to see if we have been addressed
if matched, _ := regexp.MatchString(`^\s*`+b.BotName+`\s*`, post.Message); matched {
println("i have been addressed in channel " + post.ChannelId)
@ -231,13 +229,6 @@ func (b *Bot) HandleWebSocketResponse(event *model.WebSocketEvent) {
return
}
if matched, _ := regexp.MatchString(`^\s*bot([\,]?)\s*`, post.Message); matched {
println("i have been addressed in channel " + post.ChannelId)
//b.SendMsgToDebuggingChannel("i have been addressed in channel "+post.ChannelId, "")
b.HandleMsgFromChannel(event)
return
}
if event.Broadcast.ChannelId == b.debuggingChannel.Id {
b.HandleMsgFromDebuggingChannel(event)
return