From 3b7a20a192a7723c3da2a3f37b84b340ed7be8f8 Mon Sep 17 00:00:00 2001 From: Lloyd Date: Tue, 23 Jun 2026 09:13:48 +0100 Subject: [PATCH] fix: add nosec comment to exception handling in CryptoUtils decryption --- repeater/handler_helpers/text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repeater/handler_helpers/text.py b/repeater/handler_helpers/text.py index 883aed9..2ec327c 100644 --- a/repeater/handler_helpers/text.py +++ b/repeater/handler_helpers/text.py @@ -579,7 +579,7 @@ class TextHelper: try: CryptoUtils.mac_then_decrypt(shared_secret[:16], shared_secret, encrypted_data) return client_info - except Exception: + except Exception: # nosec B112 continue return None