Sfoglia il codice sorgente

Fix over-interpolation issues with percent signs

tags/v0.4.0
Russ Garrett 5 anni fa
parent
commit
33a064edda
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      httplistener/github.go

+ 1
- 1
httplistener/github.go Vedi File

@@ -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
 }

Loading…
Annulla
Salva