diff --git a/src/app/application.cpp b/src/app/application.cpp index 3e53f5ff5..3b0d4d78d 100644 --- a/src/app/application.cpp +++ b/src/app/application.cpp @@ -519,15 +519,15 @@ int Application::exec(const QStringList ¶ms) #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(); }