You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we get a /sync request that contains to-device messages or device list changes, then we call receive_sync_changes with an empty unused_fallback_keys, which prompts the olm machine to upload a new fallback key.
The underlying OlmMachine::unused_fallback_keys takes an Option for unused_fallback_keys (and looks like it will not upload a new fallback key if it is set to None). We should update the JS bindings to accept undefined, and pass that instead of the empty set.
If we get a
/sync
request that contains to-device messages or device list changes, then we callreceive_sync_changes
with an emptyunused_fallback_keys
, which prompts the olm machine to upload a new fallback key.The underlying
OlmMachine::unused_fallback_keys
takes anOption
forunused_fallback_keys
(and looks like it will not upload a new fallback key if it is set toNone
). We should update the JS bindings to acceptundefined
, and pass that instead of the empty set.unused_fallback_keys
as optional inmachine.rs/receive_sync_changes
matrix-org/matrix-rust-sdk#1838@matrix-org/matrix-sdk-crypto-js
to^0.1.0-alpha.8
matrix-org/matrix-js-sdk#3337/sync
matrix-org/matrix-js-sdk#3338The text was updated successfully, but these errors were encountered: