base: Fix a clippy warning.

This commit is contained in:
Damir Jelić 2020-08-12 15:39:38 +02:00
parent c4465e7979
commit 0dc232b268

View file

@ -1879,7 +1879,7 @@ impl BaseClient {
.lock() .lock()
.await .await
.as_ref() .as_ref()
.and_then(|o| Some(o.start_verification(device))) .map(|o| o.start_verification(device))
} }
} }