We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34427c9 commit 76114b2Copy full SHA for 76114b2
xmtp_mls/src/groups/mod.rs
@@ -1090,10 +1090,10 @@ impl<ScopedClient: ScopedGroupClient> MlsGroup<ScopedClient> {
1090
1091
if self.client.history_sync_url().is_some() {
1092
// Dispatch an update event so it can be synced across devices
1093
- self.client
+ let _ = self
1094
+ .client
1095
.local_events()
- .send(LocalEvents::OutgoingConsentUpdates(vec![consent_record]))
1096
- .map_err(|e| GroupError::Generic(e.to_string()))?;
+ .send(LocalEvents::OutgoingConsentUpdates(vec![consent_record]));
1097
}
1098
1099
Ok(())
0 commit comments