Perform the migration, even if the current version is not known.

This commit is contained in:
Benoit Marty
2024-09-25 11:54:31 +02:00
parent 075571d802
commit cb0fa05e66

View File

@@ -46,9 +46,7 @@ class MigrationPresenter @Inject constructor(
val migrationValue = migrationStoreVersion ?: return@LaunchedEffect
if (migrationValue == -1) {
// Fresh install, no migration needed
Timber.d("Fresh install, no migration needed.")
migrationStore.setApplicationMigrationVersion(lastMigration)
return@LaunchedEffect
Timber.d("Fresh install, or previous installed application did not have the migration mechanism.")
}
if (migrationValue == lastMigration) {
Timber.d("Current app migration version: $migrationValue. No migration needed.")