mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-06 15:04:34 +08:00
Fix NetworkCookieJar::deleteCookie() behavior to match Qt5 one
This commit is contained in:
parent
cf25ed3d80
commit
4965704b10
@ -79,8 +79,19 @@ namespace
|
|||||||
virtual bool deleteCookie(const QNetworkCookie &cookie)
|
virtual bool deleteCookie(const QNetworkCookie &cookie)
|
||||||
{
|
{
|
||||||
auto myCookies = allCookies();
|
auto myCookies = allCookies();
|
||||||
myCookies.removeAll(cookie);
|
|
||||||
|
QList<QNetworkCookie>::Iterator it;
|
||||||
|
for (it = myCookies.begin(); it != myCookies.end(); ++it) {
|
||||||
|
if ((it->name() == cookie.name())
|
||||||
|
&& (it->domain() == cookie.domain())
|
||||||
|
&& (it->path() == cookie.path())) {
|
||||||
|
myCookies.erase(it);
|
||||||
setAllCookies(myCookies);
|
setAllCookies(myCookies);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user