mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-25 14:04:23 +00:00
parent
ca72360b6f
commit
c58fb92365
@ -815,7 +815,6 @@ try
|
|||||||
});
|
});
|
||||||
|
|
||||||
disconnect(m_desktopIntegration, &DesktopIntegration::activationRequested, this, &Application::createStartupProgressDialog);
|
disconnect(m_desktopIntegration, &DesktopIntegration::activationRequested, this, &Application::createStartupProgressDialog);
|
||||||
// we must not delete menu while it is used by DesktopIntegration
|
|
||||||
#ifndef Q_OS_MACOS
|
#ifndef Q_OS_MACOS
|
||||||
const WindowState windowState = !m_startupProgressDialog ? WindowState::Hidden
|
const WindowState windowState = !m_startupProgressDialog ? WindowState::Hidden
|
||||||
: (m_startupProgressDialog->windowState() & Qt::WindowMinimized) ? WindowState::Minimized
|
: (m_startupProgressDialog->windowState() & Qt::WindowMinimized) ? WindowState::Minimized
|
||||||
|
@ -156,8 +156,11 @@ WebApplication::WebApplication(IApplication *app, QObject *parent)
|
|||||||
m_sessionCookieName = Preferences::instance()->getWebAPISessionCookieName();
|
m_sessionCookieName = Preferences::instance()->getWebAPISessionCookieName();
|
||||||
if (!isValidCookieName(m_sessionCookieName))
|
if (!isValidCookieName(m_sessionCookieName))
|
||||||
{
|
{
|
||||||
LogMsg(tr("Unacceptable session cookie name is specified: '%1'. Default one is used.")
|
if (!m_sessionCookieName.isEmpty())
|
||||||
.arg(m_sessionCookieName), Log::WARNING);
|
{
|
||||||
|
LogMsg(tr("Unacceptable session cookie name is specified: '%1'. Default one is used.")
|
||||||
|
.arg(m_sessionCookieName), Log::WARNING);
|
||||||
|
}
|
||||||
m_sessionCookieName = DEFAULT_SESSION_COOKIE_NAME;
|
m_sessionCookieName = DEFAULT_SESSION_COOKIE_NAME;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user