mirror of
https://github.com/Sude-/lgogdownloader.git
synced 2025-03-12 23:06:41 +01:00
Don't print help text after login
This commit is contained in:
parent
0be499db7f
commit
a0650129f7
10
main.cpp
10
main.cpp
@ -557,9 +557,13 @@ int main(int argc, char *argv[])
|
||||
else if (config.bCheckStatus)
|
||||
downloader.checkStatus();
|
||||
else
|
||||
{ // Show help message
|
||||
std::cerr << config.sVersionString << std::endl
|
||||
<< options_cli_all << std::endl;
|
||||
{
|
||||
if (!(config.bLoginAPI || config.bLoginHTTP))
|
||||
{
|
||||
// Show help message
|
||||
std::cerr << config.sVersionString << std::endl
|
||||
<< options_cli_all << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
// Orphan check was called at the same time as download. Perform it after download has finished
|
||||
|
Loading…
x
Reference in New Issue
Block a user