From 2cf79ef922fd590b7e52952878e145fcfddb4db1 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sat, 4 Jan 2020 09:32:28 -0500 Subject: [PATCH] Minor code review --- src/js/static-net-filtering.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ); };