Skip to content

Commit f48db04

Browse files
committed
chore/clippy: needless borrow
Jira: IAM-1908
1 parent 453a40e commit f48db04

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/github/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async fn id_to_username(
7272
let cache = Arc::clone(&*cache);
7373
let cache_id = (*id).clone();
7474
let res = Client::default()
75-
.get(&format!("{USER_URL}/{id}"))
75+
.get(format!("{USER_URL}/{id}"))
7676
.basic_auth(
7777
&github_auth_params.client_id,
7878
Some(&github_auth_params.client_secret),

0 commit comments

Comments
 (0)