Skip to content

Commit 81cb261

Browse files
authored
Fix syntax error in if statement for API version check
1 parent 9f56a1e commit 81cb261

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/fc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ const FC = {
806806
serialRxTypes.push("SPEKTRUM1024");
807807
}
808808

809-
if semver.gte(apiVersion, API_VERSION_1_47)) {
809+
if (semver.gte(apiVersion, API_VERSION_1_47)) {
810810
serialRxTypes.push("MAVLINK");
811811
}
812812
}

0 commit comments

Comments
 (0)