1
0
mirror of synced 2025-02-01 12:08:03 +01:00

Fixed regex issue

This commit is contained in:
bwhitn 2017-08-27 11:49:28 -04:00
parent 414726ecd4
commit 2a7c0252a0

View File

@ -245,7 +245,7 @@ const VBE = {
* @returns {string}
*/
runDecodeVBE: function (data, args) {
let matcher = /#@~\^......==(.+)......==\^#~@/gm,
let matcher = /#@~\^......==(.+)......==\^#~@/,
result = "",
encodedData;
while ((encodedData = matcher.exec(data))) {