Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mh84 authored and ctron committed Oct 17, 2023
1 parent c60380d commit 081f372
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/agent/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,9 @@ where

login_url.query_pairs_mut().extend_pairs(options.query);
if let Some(options) = &config.options {
login_url.query_pairs_mut().extend_pairs(options.query.clone());
login_url
.query_pairs_mut()
.extend_pairs(options.query.clone());
}

// the next call will most likely navigate away from this page
Expand Down

0 comments on commit 081f372

Please sign in to comment.