Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
josueBarretogit committed Dec 27, 2024
1 parent 138ba4b commit f17396b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl CliArgs {

let credentials_are_stored = storage.check_credentials_stored()?;
if credentials_are_stored.is_none() {
logger.warn("The client id or the access token are empty, it is recommended you run `manga-tui anilist reset`");
logger.warn("The client id or the access token are empty, run `manga-tui anilist init`");
exit(0)
}

Expand All @@ -152,7 +152,7 @@ impl CliArgs {
if access_token_is_valid {
logger.inform("Everything is setup correctly :D");
} else {
logger.error("The anilist access token is not valid, please run `manga-tui anilist reset`".into());
logger.error("The anilist access token is not valid, please run `manga-tui anilist init`".into());
exit(0)
}

Expand Down

0 comments on commit f17396b

Please sign in to comment.