Fix Clippy warning for unused format! in 1.81 (#343)
This commit is contained in:
@@ -847,7 +847,7 @@ async fn check_import_keys(
|
|||||||
let encrypted = match encrypt_room_key_export(&keys, &passphrase, 500000) {
|
let encrypted = match encrypt_room_key_export(&keys, &passphrase, 500000) {
|
||||||
Ok(encrypted) => encrypted,
|
Ok(encrypted) => encrypted,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
format!("* Failed to encrypt room keys during export: {e}");
|
println!("* Failed to encrypt room keys during export: {e}");
|
||||||
process::exit(2);
|
process::exit(2);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user