From cb98379e267ce5f46bef7499cb0dcaba9f7321d5 Mon Sep 17 00:00:00 2001 From: Gustavo Carreno Date: Tue, 3 Dec 2024 19:58:59 +0000 Subject: [PATCH] fix: STOOOOOOPID error of a misplaced semicolon --- src/bot/irclogbot.bot.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot/irclogbot.bot.pas b/src/bot/irclogbot.bot.pas index 176dbba..03d063a 100644 --- a/src/bot/irclogbot.bot.pas +++ b/src/bot/irclogbot.bot.pas @@ -75,7 +75,7 @@ procedure TReplayThread.Execute; line: String; index: Integer = 0; begin - if not FIRC.Connected then; + if not FIRC.Connected then begin debug('Exiting replay thread due not being connected.'); exit;