mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-23 16:25:22 +03:00
Fixed broken check for to migrate to version 1.3.1 (cleanflight).
This commit is contained in:
parent
9eb8903379
commit
8c69143fcf
1 changed files with 1 additions and 1 deletions
|
@ -617,7 +617,7 @@ function configuration_restore(callback) {
|
|||
appliedMigrationsCount++;
|
||||
}
|
||||
|
||||
if (!compareVersions(migratedVersion, '1.3.1')) {
|
||||
if (compareVersions(migratedVersion, '1.3.1')) {
|
||||
|
||||
// LED_COLORS & LED_MODE_COLORS support was added.
|
||||
if (!configuration.LED_COLORS) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue