Skip to content
This repository has been archived by the owner on Nov 18, 2022. It is now read-only.

Commit

Permalink
#168: c96d225: fixed: remote mode didn't work
Browse files Browse the repository at this point in the history
  • Loading branch information
hugbug committed Feb 19, 2016
1 parent 2b84031 commit 1d05477
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions daemon/main/nzbget.cpp
Expand Up @@ -657,12 +657,15 @@ void NZBGet::Run(bool reload)
StartRemoteServer();
StartFrontend();

if (!m_commandLineParser->GetServerMode())
if (!m_commandLineParser->GetRemoteClientMode())
{
ProcessStandalone();
}
if (!m_commandLineParser->GetServerMode())
{
ProcessStandalone();
}

DoMainLoop();
DoMainLoop();
}

ScriptController::TerminateAll();

Expand Down

0 comments on commit 1d05477

Please sign in to comment.