From dcb7d036ed51d9070f66c08db0656b4151617b7c Mon Sep 17 00:00:00 2001 From: Edgar Lin Date: Tue, 28 Oct 2025 15:03:18 -0700 Subject: [PATCH] also ignore __request_id --- lib/backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/backend.py b/lib/backend.py index e55ce59..77c13fa 100644 --- a/lib/backend.py +++ b/lib/backend.py @@ -286,7 +286,7 @@ class Backend: message = { key: value for (key, value) in (dataclasses.asdict(auth_data).items()) - if key != "signature" + if key != "signature" and key != "__request_id" } if auth_data.reqnum < (self.reqnum - MSG_HISTORY_LEN): log.debug(