diff --git a/src/Core/Controls/AuthenticatorViewCell/AuthenticatorViewCell.xaml.cs b/src/Core/Controls/AuthenticatorViewCell/AuthenticatorViewCell.xaml.cs index 34c24a937..a8137ad24 100644 --- a/src/Core/Controls/AuthenticatorViewCell/AuthenticatorViewCell.xaml.cs +++ b/src/Core/Controls/AuthenticatorViewCell/AuthenticatorViewCell.xaml.cs @@ -34,7 +34,7 @@ namespace Bit.App.Controls { Icon_Error(sender, e); } - catch(Exception ex) + catch (Exception ex) { LoggerHelper.LogEvenIfCantBeResolved(ex); Icon_Error(sender, e); diff --git a/src/Core/Controls/CipherViewCell/CipherViewCell.xaml.cs b/src/Core/Controls/CipherViewCell/CipherViewCell.xaml.cs index 52adb36a6..ed6b78339 100644 --- a/src/Core/Controls/CipherViewCell/CipherViewCell.xaml.cs +++ b/src/Core/Controls/CipherViewCell/CipherViewCell.xaml.cs @@ -63,7 +63,7 @@ namespace Bit.App.Controls { Icon_Error(sender, e); } - catch(Exception ex) + catch (Exception ex) { LoggerHelper.LogEvenIfCantBeResolved(ex); Icon_Error(sender, e); diff --git a/src/Core/Pages/Vault/CipherItemViewModel.cs b/src/Core/Pages/Vault/CipherItemViewModel.cs index 41aa4ee82..a5570d2d1 100644 --- a/src/Core/Pages/Vault/CipherItemViewModel.cs +++ b/src/Core/Pages/Vault/CipherItemViewModel.cs @@ -39,7 +39,8 @@ namespace Bit.App.Pages _iconImageSource = new UriImageSource { Uri = new Uri(iconImageStr), - CacheValidity = TimeSpan.FromDays(90) + CacheValidity = TimeSpan.FromDays(90), + CachingEnabled = true }; }