Closed neilenns closed 2 months ago
This line:
if (codeMatch.length > 2 && codeMatch[3].length > 0) {
causes an exception because codeMatch[3] is undefined. It needs a ?..
?.
This line:
causes an exception because codeMatch[3] is undefined. It needs a
?.
.