From 704b623b2906ea9b70d95da057804a2e3a3a7b2f Mon Sep 17 00:00:00 2001 From: polyfloyd Date: Sun, 1 Jun 2025 18:08:41 +0200 Subject: [PATCH] irc: Set tls_verify to false for now --- ircbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircbot.py b/ircbot.py index 729654c..918ff62 100755 --- a/ircbot.py +++ b/ircbot.py @@ -136,7 +136,7 @@ def main(*, server, channel, nick, mqtt_host): push_messages=push_messages, ) botcommands.setup(bot, mqtt_host) - bot.run(server, tls=True) + bot.run(server, tls=True, tls_verify=False) if __name__ == "__main__":