Fix ssl error

This commit is contained in:
2026-01-02 17:31:00 +01:00
parent f3dec3fb78
commit 9969a6f08b

View File

@@ -15,6 +15,7 @@ class MessageController:
def __init__(self, app, auth_data : AuthData, host : str):
self._register_routes(app)
self.config = Configuration(host=host)
self.config.verify_ssl=False
self._auth_data = auth_data
def _register_routes(self, app):