Skip to content

Commit

Permalink
🔧 fix: remove unused err var
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon-Becker committed Sep 30, 2023
1 parent b0615c9 commit ede6ca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/utils/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async fn _get_json_from_url(

let res = match client.get(url).send().await {
Ok(res) => res,
Err(err) => {
Err(_) => {
if retries_remaining == 0 {
return Ok(None)
}
Expand Down

0 comments on commit ede6ca9

Please sign in to comment.