Skip to content

Commit f56f27a

Browse files
committed
Remove unnecessary parentheses
1 parent 3e496db commit f56f27a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/matrix-sdk-crypto/src/olm/account.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ impl ReadOnlyAccount {
625625
let max_keys = self.max_one_time_keys().await;
626626
let max_on_server = (max_keys as u64) / 2;
627627

628-
if count >= (max_on_server) {
628+
if count >= max_on_server {
629629
return Err(());
630630
}
631631

0 commit comments

Comments
 (0)