diff --git a/src/iOS.Extension/SiteListViewController.cs b/src/iOS.Extension/SiteListViewController.cs index d6f92d9a9..a463395e7 100644 --- a/src/iOS.Extension/SiteListViewController.cs +++ b/src/iOS.Extension/SiteListViewController.cs @@ -163,7 +163,7 @@ namespace Bit.iOS.Extension return; } - Resolver.Resolve().AddOrUpdateValue(App.Constants.SettingLastBackgroundedDate, DateTime.UtcNow); + Resolver.Resolve().AddOrUpdateValue(App.Constants.SettingLastBackgroundedDate, DateTime.Now); var item = _tableItems.ElementAt(indexPath.Row); if(item == null) diff --git a/src/iOS/AppDelegate.cs b/src/iOS/AppDelegate.cs index 3e317c8b7..8ccf6baec 100644 --- a/src/iOS/AppDelegate.cs +++ b/src/iOS/AppDelegate.cs @@ -138,7 +138,7 @@ namespace Bit.iOS // Log the date/time we last backgrounded - Settings.AddOrUpdateValue(Bit.App.Constants.SettingLastBackgroundedDate, DateTime.UtcNow); + Settings.AddOrUpdateValue(Bit.App.Constants.SettingLastBackgroundedDate, DateTime.Now); base.DidEnterBackground(uiApplication); Debug.WriteLine("DidEnterBackground");