Merge pull request #647 from mikeller/fix_backup_migration
Fixed broken check for to migrate to version 1.3.1 (cleanflight).10.3.x-maintenance
commit
b7c731362c
|
@ -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…
Reference in New Issue