code review

pull/2/head
gorhill 9 years ago
parent 04f160efba
commit 8c506d4d73

@ -1958,8 +1958,12 @@ vAPI.cookies.getAll = function(callback) {
var onAsync = function() {
var out = [];
var enumerator = Services.cookies.enumerator;
var ffcookie;
while ( enumerator.hasMoreElements() ) {
out.push(new this.CookieEntry(enumerator.getNext().QueryInterface(Ci.nsICookie)));
ffcookie = enumerator.getNext();
if ( ffcookie instanceof Ci.nsICookie ) {
out.push(new this.CookieEntry(ffcookie));
}
}
callback(out);
};

Loading…
Cancel
Save