Skip to content

Commit

Permalink
Apply clippy suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
SirLynix committed Jul 14, 2024
1 parent 2964cbc commit f760072
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/game_connection_token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ impl GameConnectionToken {
let additional_data = GameConnectionTokenAdditionalData {
token_version,
expire_timestamp,
client_to_server_key: encryption_keys.client_to_server.clone(),
server_to_client_key: encryption_keys.server_to_client.clone(),
client_to_server_key: encryption_keys.client_to_server,
server_to_client_key: encryption_keys.server_to_client,
};

let additional_data_bytes = additional_data.to_bytes().unwrap();
Expand Down

0 comments on commit f760072

Please sign in to comment.