mirror of
https://github.com/bitwarden/android.git
synced 2025-01-12 11:17:30 +03:00
old userid is string
This commit is contained in:
parent
50f71e7280
commit
4ae02c27a4
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ namespace Bit.App.Migration
|
||||||
public static bool NeedsMigration()
|
public static bool NeedsMigration()
|
||||||
{
|
{
|
||||||
return ServiceContainer.Resolve<SettingsShim>("settingsShim")
|
return ServiceContainer.Resolve<SettingsShim>("settingsShim")
|
||||||
.GetValueOrDefault(Constants.OldUserIdKey, DateTime.MinValue) > DateTime.MinValue;
|
.GetValueOrDefault(Constants.OldUserIdKey, null) != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static async Task<bool> PerformMigrationAsync()
|
public static async Task<bool> PerformMigrationAsync()
|
||||||
|
|
Loading…
Reference in a new issue