Skip to content

Commit 656de77

Browse files
committed
Hotfix
1 parent 49703c5 commit 656de77

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.6.3
2+
- Hotfix for potential bug in encryption detection.
3+
14
## 1.6.2
25
- Hotfix for HoverDocs
36

extension.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ function activate(context) {
138138

139139
function LookForErrors(source) {
140140
let outp = [];
141-
let reg = new RegExp(`(Encode|Decode)(?:\\s)?=(?:\\s)?function\\(.+\\).*(${Encryption.join("|")}).*end function`, "s");
141+
let reg = new RegExp(`$(Encode|Decode)(?:\\s)?=(?:\\s)?function\\(.+\\).*(${Encryption.join("|")}).*end function`, "s");
142142
let m = source.match(reg);
143143
if (m) {
144144
let match = m;

0 commit comments

Comments
 (0)