From 53952feddd026ba62f517a50be36040d16828166 Mon Sep 17 00:00:00 2001 From: Patrick Griffis Date: Tue, 26 May 2020 16:49:33 -0700 Subject: Fix parsing of 313 Closes #2472 --- src/common/proto-irc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common') diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c index dcb4e8cd..69501ee3 100644 --- a/src/common/proto-irc.c +++ b/src/common/proto-irc.c @@ -621,7 +621,7 @@ process_numeric (session * sess, int n, case 319: if (!serv->skip_next_whois) EMIT_SIGNAL_TIMESTAMP (XP_TE_WHOIS2, whois_sess, word[4], - word_eol[5] + 1, NULL, NULL, 0, + word_eol[5][0] == ':' ? word_eol[5] + 1 : word_eol[5], NULL, NULL, 0, tags_data->timestamp); break; -- cgit 1.4.1