neilenns / vatsim-plan-verifier

Verifies flight plans for vatsim flights
MIT License
2 stars 0 forks source link

rawAircraftType without a suffix causes an exception #1337

Closed neilenns closed 2 months ago

neilenns commented 2 months ago

This line:

        if (codeMatch.length > 2 && codeMatch[3].length > 0) {

causes an exception because codeMatch[3] is undefined. It needs a ?..