1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-27 18:40:41 +12:00
This commit is contained in:
gorhill 2015-05-04 19:07:12 -04:00
parent 4a86eb0525
commit 13c03d802d

View file

@ -294,7 +294,7 @@ var chromeCookieRemove = function(url, name) {
var persistCookieKey = cookieKeyFromCookieURL(url, 'persistent', name);
var callback = function(details) {
var success = !!details;
if ( cookieDict.hasOwnProperty(sessionCookieKey) ) {
if ( removeCookieFromDict(sessionCookieKey) ) {
if ( success ) {
µm.logger.writeOne('', 'info', 'cookie deleted: ' + sessionCookieKey);
µm.cookieRemovedCounter += 1;
@ -302,7 +302,7 @@ var chromeCookieRemove = function(url, name) {
µm.logger.writeOne('', 'error', 'failed to delete cookie: ' + sessionCookieKey);
}
}
if ( cookieDict.hasOwnProperty(persistCookieKey) ) {
if ( removeCookieFromDict(persistCookieKey) ) {
if ( success ) {
µm.logger.writeOne('', 'info', 'cookie deleted: ' + persistCookieKey);
µm.cookieRemovedCounter += 1;