Skip to content

Commit c7efb4d

Browse files
committed
Fix isCompatible in refloat pkgdesc
1 parent 2a5eb61 commit c7efb4d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkgdesc.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Item {
99
property string pkgOutput: "refloat.vescpkg"
1010

1111
function isCompatible (fwRxParams) {
12-
if (fwRxParams.hwTypeStr() != "vesc") {
12+
if (fwRxParams.hwTypeStr().toLowerCase() != "vesc") {
1313
return false;
1414
}
1515

0 commit comments

Comments
 (0)