mirror of
https://github.com/bitwarden/mobile
synced 2025-12-14 07:13:33 +00:00
minor change missing in last commit
This commit is contained in:
@@ -34,7 +34,7 @@ namespace Bit.App.Controls
|
|||||||
{
|
{
|
||||||
Icon_Error(sender, e);
|
Icon_Error(sender, e);
|
||||||
}
|
}
|
||||||
catch(Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
LoggerHelper.LogEvenIfCantBeResolved(ex);
|
LoggerHelper.LogEvenIfCantBeResolved(ex);
|
||||||
Icon_Error(sender, e);
|
Icon_Error(sender, e);
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ namespace Bit.App.Controls
|
|||||||
{
|
{
|
||||||
Icon_Error(sender, e);
|
Icon_Error(sender, e);
|
||||||
}
|
}
|
||||||
catch(Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
LoggerHelper.LogEvenIfCantBeResolved(ex);
|
LoggerHelper.LogEvenIfCantBeResolved(ex);
|
||||||
Icon_Error(sender, e);
|
Icon_Error(sender, e);
|
||||||
|
|||||||
@@ -39,7 +39,8 @@ namespace Bit.App.Pages
|
|||||||
_iconImageSource = new UriImageSource
|
_iconImageSource = new UriImageSource
|
||||||
{
|
{
|
||||||
Uri = new Uri(iconImageStr),
|
Uri = new Uri(iconImageStr),
|
||||||
CacheValidity = TimeSpan.FromDays(90)
|
CacheValidity = TimeSpan.FromDays(90),
|
||||||
|
CachingEnabled = true
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user