From d2d9354decba8adb876e09300d83a7b9dbbd08c0 Mon Sep 17 00:00:00 2001 From: nemesis Date: Tue, 4 Nov 2025 22:36:55 +0100 Subject: [PATCH] chiffrement --- asmodee.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/asmodee.py b/asmodee.py index 77b6c41..f8ca498 100755 --- a/asmodee.py +++ b/asmodee.py @@ -76,8 +76,12 @@ else: print("Probleme de lecture de configuration asmodee.ini") # Create an instance of the MatrixBotAPI +cnf = botlib.Config() +cnf.encryption_enabled = True +cnf.emoji_verify = True +cnf.ignore_unverified_devices = True creds = botlib.Creds(SERVER, USERNAME, PASSWORD) -bot = botlib.Bot(creds) +bot = botlib.Bot(creds, cnf) # Chargement des données persistantes def horloge_read():