mirror of https://github.com/gorhill/uBlock.git
oops
This commit is contained in:
parent
01a5fc44e2
commit
002b99e573
|
@ -252,7 +252,7 @@ var renderDOMIncremental = function(response) {
|
|||
var countFromNode = function(li) {
|
||||
var span = li.children[2];
|
||||
var cnt = parseInt(span.getAttribute('data-cnt'), 10);
|
||||
return isNaN(cnt) ? cnt : 0;
|
||||
return isNaN(cnt) ? 0 : cnt;
|
||||
};
|
||||
|
||||
/******************************************************************************/
|
||||
|
|
Loading…
Reference in New Issue