Skip to content

Commit a209c3b

Browse files
committed
Include info in bridge state deduplication
1 parent 3d29127 commit a209c3b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mautrix/util/bridge_state.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ def should_deduplicate(self, prev_state: Optional["BridgeState"]) -> bool:
102102
not prev_state
103103
or prev_state.state_event != self.state_event
104104
or prev_state.error != self.error
105+
or prev_state.info != self.info
105106
):
106107
# If there's no previous state or the state was different, send this one.
107108
return False

0 commit comments

Comments
 (0)