- Use `channelName` instead of hardcoded `#tlang`

This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-20 10:52:06 +02:00
parent 44e476c9c5
commit a8bd7c8750
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ void commitHandler(HTTPServerRequest request, HTTPServerResponse response)
string authorEmail = authorBlock["email"].str();
string ircMessage = "Commit: "~commitMessage~" ("~commitID~") by "~authorName~" ("~authorEmail~") ["~commitURL~"]";
ircBot.channelMessage(ircMessage, "#tlang"); //TODO: Add IRC error handling
ircBot.channelMessage(ircMessage, channelName); //TODO: Add IRC error handling
/* Send message to NTFY server */
notifySH(ircMessage);