irc: Set tls_verify to false for now

This commit is contained in:
polyfloyd 2025-06-01 18:08:41 +02:00
parent d067be38b4
commit 704b623b29

View file

@ -136,7 +136,7 @@ def main(*, server, channel, nick, mqtt_host):
push_messages=push_messages, push_messages=push_messages,
) )
botcommands.setup(bot, mqtt_host) botcommands.setup(bot, mqtt_host)
bot.run(server, tls=True) bot.run(server, tls=True, tls_verify=False)
if __name__ == "__main__": if __name__ == "__main__":