Skip to content

Commit

Permalink
Merge commit '52ad2f0'
Browse files Browse the repository at this point in the history
  • Loading branch information
romanz committed Mar 4, 2021
2 parents bbec9e1 + 52ad2f0 commit aa6205c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ fn create_cookie_getter(

/// Processes deprecation of cookie in favor of auth
fn select_auth(auth: Option<String>, cookie: Option<String>) -> Option<String> {
match (auth, cookie) {
match (cookie, auth) {
(None, None) => None,
(Some(value), None) => {
eprintln!("WARNING: cookie option is deprecated and will be removed in the future!");
Expand Down

0 comments on commit aa6205c

Please sign in to comment.