Ver código fonte

Fix over-interpolation issues with percent signs

tags/v0.4.0
Russ Garrett 5 anos atrás
pai
commit
33a064edda
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      httplistener/github.go

+ 1
- 1
httplistener/github.go Ver arquivo

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

Carregando…
Cancelar
Salvar