mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
Add warn message when using a non-premium account with download or archive
This commit is contained in:
parent
fe17f3951e
commit
6515d3025f
2 changed files with 8 additions and 0 deletions
|
|
@ -212,6 +212,10 @@ impl Execute for Download {
|
|||
}
|
||||
|
||||
async fn execute(self, ctx: Context) -> Result<()> {
|
||||
if !ctx.crunchy.premium().await {
|
||||
warn!("You may not be able to download all requested videos when logging in anonymously or using a non-premium account")
|
||||
}
|
||||
|
||||
let mut parsed_urls = vec![];
|
||||
|
||||
let output_supports_softsubs = SOFTSUB_CONTAINERS.contains(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue