We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae7a79e commit c8638f6Copy full SHA for c8638f6
features/migration/impl/src/main/kotlin/io/element/android/features/migration/impl/MigrationPresenter.kt
@@ -46,9 +46,7 @@ class MigrationPresenter @Inject constructor(
46
val migrationValue = migrationStoreVersion ?: return@LaunchedEffect
47
if (migrationValue == -1) {
48
// Fresh install, no migration needed
49
- Timber.d("Fresh install, no migration needed.")
50
- migrationStore.setApplicationMigrationVersion(lastMigration)
51
- return@LaunchedEffect
+ Timber.d("Fresh install, or previous installed application did not have the migration mechanism.")
52
}
53
if (migrationValue == lastMigration) {
54
Timber.d("Current app migration version: $migrationValue. No migration needed.")
0 commit comments