From fc8cfd4bdd580d40377b1c68f1ce63d6c5d8e860 Mon Sep 17 00:00:00 2001 From: Taha Yassine Kraiem Date: Mon, 4 Jul 2022 17:20:14 +0200 Subject: [PATCH] feat(utilities): support old version of nodejs --- utilities/utils/helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/utils/helper.js b/utilities/utils/helper.js index 462c4ddc3..7f1b4dca4 100644 --- a/utilities/utils/helper.js +++ b/utilities/utils/helper.js @@ -66,7 +66,7 @@ const isValidSession = function (sessionInfo, filters) { } } } - foundAll &&= found; + foundAll = foundAll && found; if (!found) { break; }