fix new clippy warnings

This commit is contained in:
Dustin J. Mitchell
2021-09-05 21:55:09 +00:00
parent fd2add5dea
commit 72b4941485
5 changed files with 9 additions and 9 deletions

View File

@@ -125,7 +125,7 @@ fn get_server(settings: &Settings) -> anyhow::Result<Box<dyn Server>> {
settings.server_origin.as_ref(),
settings.encryption_secret.as_ref(),
) {
let client_key = Uuid::parse_str(&client_key)?;
let client_key = Uuid::parse_str(client_key)?;
log::debug!("Using sync-server with origin {}", origin);
log::debug!("Sync client ID: {}", client_key);