mirror of
https://github.com/bitwarden/mobile.git
synced 2025-01-21 21:01:50 +01:00
fix: Don't load icon if icon loading is disabled
This commit is contained in:
parent
477b1cca44
commit
ab24cbdd41
@ -31,6 +31,11 @@ namespace Bit.App.Pages
|
||||
{
|
||||
get
|
||||
{
|
||||
if (!_websiteIconsEnabled)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
if (_iconImageSource == string.Empty) // default value since icon source can return null
|
||||
{
|
||||
_iconImageSource = IconImageHelper.GetIconImage(Cipher);
|
||||
|
Loading…
Reference in New Issue
Block a user