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
Michael Keller 2017-09-02 14:03:47 +12:00 committed by GitHub
commit b7c731362c
1 changed files with 1 additions and 1 deletions

View File

@ -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) {