login: don't print a warning for EAuthSessionGuardType::None
(#346)
This commit is contained in:
parent
41bf8a45ec
commit
d18dd378c3
1 changed files with 4 additions and 0 deletions
|
@ -157,6 +157,10 @@ fn do_login_impl<T: Transport + Clone>(
|
|||
let code = tui::prompt().trim().to_owned();
|
||||
login.submit_steam_guard_code(method.confirmation_type, code)?;
|
||||
}
|
||||
EAuthSessionGuardType::k_EAuthSessionGuardType_None => {
|
||||
debug!("No login confirmation required. Proceeding with login.");
|
||||
continue;
|
||||
}
|
||||
_ => {
|
||||
warn!("Unknown confirmation method: {:?}", method);
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue