mirror of
https://github.com/bitwarden/android.git
synced 2025-03-14 02:08:48 +03:00
Fix migration crash (#2430)
This commit is contained in:
parent
c6bdb67981
commit
276a93c497
1 changed files with 2 additions and 2 deletions
|
@ -394,10 +394,10 @@ namespace Bit.Core.Services
|
|||
// use values from first userId to apply globals
|
||||
if (firstUserId != null)
|
||||
{
|
||||
var theme = await GetValueAsync<int?>(Storage.LiteDb, V3Keys.ThemeKey(firstUserId));
|
||||
var theme = await GetValueAsync<string>(Storage.LiteDb, V3Keys.ThemeKey(firstUserId));
|
||||
await SetValueAsync(Storage.LiteDb, V4Keys.ThemeKey, theme);
|
||||
|
||||
var autoDarkTheme = await GetValueAsync<int?>(Storage.LiteDb, V3Keys.AutoDarkThemeKey(firstUserId));
|
||||
var autoDarkTheme = await GetValueAsync<string>(Storage.LiteDb, V3Keys.AutoDarkThemeKey(firstUserId));
|
||||
await SetValueAsync(Storage.LiteDb, V4Keys.AutoDarkThemeKey, autoDarkTheme);
|
||||
|
||||
var disableFavicon = await GetValueAsync<bool?>(Storage.LiteDb, V3Keys.DisableFaviconKey(firstUserId));
|
||||
|
|
Loading…
Add table
Reference in a new issue