minor change missing in last commit

This commit is contained in:
Dinis Vieira 2024-03-27 22:01:37 +00:00
parent 6b15bfce12
commit 01ee126c6f
No known key found for this signature in database
GPG Key ID: 9389160FF6C295F3
3 changed files with 4 additions and 3 deletions

View File

@ -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);

View File

@ -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);

View File

@ -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
};
}