From 609c66ecff96d467f6f267a68d709ab5e609e002 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Sun, 21 Jan 2024 16:44:56 +0100 Subject: [PATCH] use irc nick as pink token --- app/TwitchBot/TwitchBot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/TwitchBot/TwitchBot.php b/app/TwitchBot/TwitchBot.php index bb3724d..e5a5aa6 100644 --- a/app/TwitchBot/TwitchBot.php +++ b/app/TwitchBot/TwitchBot.php @@ -156,7 +156,7 @@ class TwitchBot { if (!$this->ready) return; if (time() - $this->last_contact < 60) return; try { - $this->sendIRCMessage(IRCMessage::ping()); + $this->sendIRCMessage(IRCMessage::ping($this->nick)); } catch (\Exception $e) { } }); -- 2.39.2