From e3e235796deb3b0f6d1ff10fcdcb131c52a2b989 Mon Sep 17 00:00:00 2001 From: voc0der Date: Fri, 29 Nov 2024 14:35:32 -0500 Subject: [PATCH] Matrix: Do not increment cache in long stored tokens. --- apprise/plugins/matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apprise/plugins/matrix.py b/apprise/plugins/matrix.py index 82cd1016d..112fe0445 100644 --- a/apprise/plugins/matrix.py +++ b/apprise/plugins/matrix.py @@ -748,7 +748,7 @@ def _send_server_notification(self, body, title='', # Increment the transaction ID to avoid future messages being # recognized as retransmissions and ignored - if self.version == MatrixVersion.V3: + if self.version == MatrixVersion.V3 and self.access_token != self.password: self.transaction_id += 1 self.store.set( 'transaction_id', self.transaction_id,