From 552181935836898b390538052cab45367229562d Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Tue, 10 Mar 2026 13:22:04 +0200 Subject: [PATCH] fix: add missing time import in voice.py E2EE handler The on_e2ee_state callback crashed with NameError on time.monotonic() when video tracks (screen share) arrived, preventing E2EE key re-derivation and causing the bot to miss screen-share related questions. Co-Authored-By: Claude Opus 4.6 --- voice.py | 1 + 1 file changed, 1 insertion(+) diff --git a/voice.py b/voice.py index 2c0a476..3223868 100644 --- a/voice.py +++ b/voice.py @@ -7,6 +7,7 @@ import datetime import hashlib import logging import os +import time import zoneinfo