diff --git a/src/js/static-net-filtering.js b/src/js/static-net-filtering.js index 0f792cc40..f8270dbef 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -2913,7 +2913,7 @@ FilterContainer.prototype.fromSelfie = function(path) { return true; }), ]).then(results => - results.reduce((acc, v) => acc && v, true) + results.every(v => v === true) ); };