From c8e87ca1106d21f96db4c36ff6fd247de626ad21 Mon Sep 17 00:00:00 2001 From: Astra Logical Date: Thu, 23 Jul 2026 13:51:40 -0400 Subject: [PATCH] Bug fix --- matrix_keycloak_bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/matrix_keycloak_bot.py b/matrix_keycloak_bot.py index 2743e64..a894457 100644 --- a/matrix_keycloak_bot.py +++ b/matrix_keycloak_bot.py @@ -430,8 +430,8 @@ async def main(): "device_id": client.device_id }, f) - # Ensure an Olm crypto account exists in the store (accessing via crypto_store variable directly) - account = await crypto_store.get_account(client.mxid) + # Ensure an Olm crypto account exists in the store + account = await crypto_store.get_account() if not account: log.info("Creating new Olm account...") account = OlmAccount.generate()