Skip to content

Commit 76be400

Browse files
committed
Update matrix-sdk to 6752cf73df944
1 parent 840086c commit 76be400

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/verification.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,8 @@ impl VerificationRequest {
915915
#[wasm_bindgen(js_name = "getVerification")]
916916
pub fn get_verification(&self) -> JsValue {
917917
let result: Option<JsValue> =
918-
if let VerificationRequestState::Transitioned { verification } = self.inner.state() {
918+
if let VerificationRequestState::Transitioned { verification, .. } = self.inner.state()
919+
{
919920
Verification(verification).try_into().ok()
920921
} else {
921922
None

0 commit comments

Comments
 (0)