use this._lookup instead of command.data for remove commands

This commit is contained in:
Dan Mills 2008-06-29 17:36:13 -07:00
Родитель 446aeccfad
Коммит e2e14c1426
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -173,9 +173,9 @@ CookieStore.prototype = {
http://developer.mozilla.org/en/docs/nsICookieManager http://developer.mozilla.org/en/docs/nsICookieManager
the last argument is "always block cookies from this domain?" the last argument is "always block cookies from this domain?"
and the answer is "no". */ and the answer is "no". */
this._cookieManager.remove( command.data.host, this._cookieManager.remove(this._lookup[command.GUID].host,
command.data.name, this._lookup[command.GUID].name,
command.data.path, this._lookup[command.GUID].path,
false ); false );
}, },