From 2a7c0252a076502856db6680a04054f3a790039b Mon Sep 17 00:00:00 2001 From: bwhitn Date: Sun, 27 Aug 2017 11:49:28 -0400 Subject: [PATCH] Fixed regex issue --- src/core/operations/VBE.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/operations/VBE.js b/src/core/operations/VBE.js index cb2ed71c..2b26b6fb 100644 --- a/src/core/operations/VBE.js +++ b/src/core/operations/VBE.js @@ -245,7 +245,7 @@ const VBE = { * @returns {string} */ runDecodeVBE: function (data, args) { - let matcher = /#@~\^......==(.+)......==\^#~@/gm, + let matcher = /#@~\^......==(.+)......==\^#~@/, result = "", encodedData; while ((encodedData = matcher.exec(data))) {