1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-24 00:35:26 +03:00

Fix offline behavior (#3480)

* Fix offline behaviour

* Fix message on setup tab when offline
This commit is contained in:
Mark Haslinghuis 2023-06-14 00:54:04 +02:00 committed by GitHub
parent 2b8dff26b8
commit 791751a860
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 19 additions and 20 deletions

View file

@ -536,7 +536,7 @@ function setRtc() {
function finishOpen() {
CONFIGURATOR.connectionValid = true;
if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_45) && FC.CONFIG.buildKey.length === 32) {
if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_45) && FC.CONFIG.buildOptions.length) {
GUI.allowedTabs = GUI.defaultAllowedTabsCloudBuild;