Migration plan v1

This commit is contained in:
Burak Kaan Köse
2026-04-23 14:52:52 +02:00
parent 6f82cd4f26
commit c1bda75d9f
17 changed files with 2087 additions and 25 deletions
+8 -3
View File
@@ -479,8 +479,8 @@ public partial class App : WinoApplication,
EnsureAppNotificationRegistration();
await Services.GetRequiredService<ReleaseLocalAccountDataCleanupService>()
.RunIfNeededAsync();
await Services.GetRequiredService<ILegacyLocalMigrationService>()
.DetectAsync();
await InitializeServicesAsync();
@@ -490,6 +490,9 @@ public partial class App : WinoApplication,
_hasConfiguredAccounts = (await _accountService.GetAccountsAsync()).Any();
await Services.GetRequiredService<ReleaseLocalAccountDataCleanupService>()
.RunIfNeededAsync();
_activationInfrastructureInitialized = true;
}
finally
@@ -1502,7 +1505,9 @@ public partial class App : WinoApplication,
Services.GetRequiredService<IMailDialogService>().InfoBarMessage(
Translator.GeneralTitle_Info,
Translator.WinoAccount_Management_ImportReloginReminder,
string.IsNullOrWhiteSpace(message.CompletionMessage)
? Translator.WinoAccount_Management_ImportReloginReminder
: message.CompletionMessage,
InfoBarMessageType.Information);
});
}