mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-21 15:25:22 +03:00
fix API version check when loading 3D settings on configuration tab.
This commit is contained in:
parent
1f6f81485e
commit
af2089e38c
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
|
|||
|
||||
function load_3d() {
|
||||
var next_callback = load_html;
|
||||
if (semver.lt(CONFIG.apiVersion, "1.14.0")) {
|
||||
if (semver.gte(CONFIG.apiVersion, "1.14.0")) {
|
||||
MSP.send_message(MSP_codes.MSP_3D, false, false, next_callback);
|
||||
} else {
|
||||
next_callback();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue