Correctly check if torrent passed during application start already exists.

This commit is contained in:
sledgehammer999
2017-11-20 23:40:09 +02:00
parent 34d38ef466
commit ae32edeb26

View File

@@ -519,15 +519,15 @@ int Application::exec(const QStringList &params)
#endif // DISABLE_GUI
m_running = true;
// Now UI is ready to process signals from Session
BitTorrent::Session::instance()->startUpTorrents();
m_paramsQueue = params + m_paramsQueue;
if (!m_paramsQueue.isEmpty()) {
processParams(m_paramsQueue);
m_paramsQueue.clear();
}
// Now UI is ready to process signals from Session
BitTorrent::Session::instance()->startUpTorrents();
return BaseApplication::exec();
}