1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-24 16:55:22 +03:00

Don't stop the promise chain in loadOutputMapping() in < 2.0

Affects the mixer and servos tab. This way they show a couple of
warnings ("no servos" and "upgrade the FC firmware" respectively)
rather than hanging the configurator.

Fixes https://github.com/iNavFlight/inav/issues/3462
This commit is contained in:
Alberto García Hierro 2018-06-27 13:18:54 +01:00
parent 92bf16454e
commit 76ee83e7a3

View file

@ -2599,7 +2599,7 @@ var mspHelper = (function (gui) {
MSP.send_message(MSPCodes.MSPV2_INAV_OUTPUT_MAPPING, false, false, callback);
else {
OUTPUT_MAPPING.flush();
return false;
callback();
}
};