code review

pull/2/head
gorhill 9 years ago
parent 1e1ec2e92c
commit 3849a3d4d9

@ -1934,10 +1934,9 @@ vAPI.cookies.observe = function(subject, topic, reason) {
if ( reason === 'deleted' || subject instanceof Ci.nsICookie2 === false ) {
return;
}
if ( typeof this.onChanged !== 'function' ) {
return;
if ( typeof this.onChanged === 'function' ) {
this.onChanged(new this.CookieEntry(subject));
}
this.onChanged(new this.CookieEntry(subject));
};
/******************************************************************************/

Loading…
Cancel
Save