mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 15:07:22 -06:00
Set cookie SID value to empty on logout
Set cookie SID expiration date to 1 day in the past on logout
This commit is contained in:
@@ -367,9 +367,9 @@ bool AbstractWebApplication::sessionStart()
|
|||||||
bool AbstractWebApplication::sessionEnd()
|
bool AbstractWebApplication::sessionEnd()
|
||||||
{
|
{
|
||||||
if ((session_ != 0) && (sessions_.contains(session_->id))) {
|
if ((session_ != 0) && (sessions_.contains(session_->id))) {
|
||||||
QNetworkCookie cookie(C_SID, session_->id.toUtf8());
|
QNetworkCookie cookie(C_SID);
|
||||||
cookie.setPath(QLatin1String("/"));
|
cookie.setPath(QLatin1String("/"));
|
||||||
cookie.setExpirationDate(QDateTime::currentDateTime());
|
cookie.setExpirationDate(QDateTime::currentDateTime().addDays(-1));
|
||||||
|
|
||||||
sessions_.remove(session_->id);
|
sessions_.remove(session_->id);
|
||||||
delete session_;
|
delete session_;
|
||||||
|
|||||||
Reference in New Issue
Block a user