mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
fix login (#202)
This commit is contained in:
parent
61766c74fa
commit
b24827dc6b
1 changed files with 2 additions and 2 deletions
|
|
@ -264,8 +264,8 @@ async fn crunchyroll_session(cli: &mut Cli) -> Result<Crunchyroll> {
|
||||||
let mut login_login_methods_count = 0;
|
let mut login_login_methods_count = 0;
|
||||||
if let Command::Login(login) = &cli.command {
|
if let Command::Login(login) = &cli.command {
|
||||||
login_login_methods_count += login.login_method.credentials.is_some() as u8
|
login_login_methods_count += login.login_method.credentials.is_some() as u8
|
||||||
+ cli.login_method.etp_rt.is_some() as u8
|
+ login.login_method.etp_rt.is_some() as u8
|
||||||
+ cli.login_method.anonymous as u8
|
+ login.login_method.anonymous as u8
|
||||||
}
|
}
|
||||||
|
|
||||||
let progress_handler = progress!("Logging in");
|
let progress_handler = progress!("Logging in");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue