- Fixed compilation error with `newConnection()`
- Made formatting uniform regarding re-opening of issues, closing of issues and comments
This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-12 20:30:17 +02:00
parent 19b0ce361f
commit f9ce9c1e2d
1 changed files with 3 additions and 3 deletions

View File

@ -122,7 +122,7 @@ void issueHandler(HTTPServerRequest request, HTTPServerResponse response)
string username = userBlock["username"].str();
//TODO: Add IRC error handling
string ircMessage = "["~repositoryName~"] Closed issue '"~issueTitle~"' (#"~to!(string)(issueID)~") by "~username~" ["~issueURL~"]";
string ircMessage = bold("["~repositoryName~"]")~setForeground(SimpleColor.RED)~" Closed issue"~resetForegroundBackground()~" '"~issueTitle~"' on issue "~bold("#"~to!(string)(issueID))~" by "~italics(username)~" ["~underline(issueURL)~"]";
ircBot.channelMessage(ircMessage, channelName);
/* Send message to NTFY server */
@ -135,7 +135,7 @@ void issueHandler(HTTPServerRequest request, HTTPServerResponse response)
string username = userBlock["username"].str();
//TODO: Add IRC error handling
string ircMessage = "["~repositoryName~"] Reopened issue '"~issueTitle~"' (#"~to!(string)(issueID)~") by "~username~" ["~issueURL~"]";
string ircMessage = bold("["~repositoryName~"]")~setForeground(SimpleColor.RED)~" Reopened issue"~resetForegroundBackground()~" '"~issueTitle~"' "~bold("#"~to!(string)(issueID))~" by "~italics(username)~" ["~underline(issueURL)~"]";
ircBot.channelMessage(ircMessage, channelName);
/* Send message to NTFY server */
@ -325,7 +325,7 @@ void main(string[] args)
/* Configure IRC client */
ConnectionInfo connInfo = ConnectionInfo.newConnection(serverHost, serverPort, nickname);
ConnectionInfo connInfo = ConnectionInfo.newConnection(serverHost, serverPort, nickname, "tbot", "TLang Bot");
ircBot = new IRCBot(connInfo);
/* Connect to the server */