Browse Source

Fix over-interpolation issues with percent signs

tags/v0.4.0
Russ Garrett 5 years ago
parent
commit
33a064edda
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      httplistener/github.go

+ 1
- 1
httplistener/github.go View File

102
 
102
 
103
 		log.Infof("%s [%s -> %s] GitHub event received", request.RemoteAddr, repo, channel)
103
 		log.Infof("%s [%s -> %s] GitHub event received", request.RemoteAddr, repo, channel)
104
 		for _, msg := range msgs {
104
 		for _, msg := range msgs {
105
-			hl.irc.Privmsgf(channel, msg)
105
+			hl.irc.Privmsg(channel, msg)
106
 		}
106
 		}
107
 	}
107
 	}
108
 }
108
 }

Loading…
Cancel
Save