mirror of
https://github.com/bitwarden/mobile
synced 2026-01-05 18:13:36 +00:00
set custom icons server url
This commit is contained in:
@@ -169,5 +169,20 @@ namespace Bit.App.Services
|
||||
_settings.AddOrUpdateValue(Constants.IdentityUrl, value);
|
||||
}
|
||||
}
|
||||
|
||||
public string IconsUrl
|
||||
{
|
||||
get => _settings.GetValueOrDefault(Constants.IconsUrl, null);
|
||||
set
|
||||
{
|
||||
if(value == null)
|
||||
{
|
||||
_settings.Remove(Constants.IconsUrl);
|
||||
return;
|
||||
}
|
||||
|
||||
_settings.AddOrUpdateValue(Constants.IconsUrl, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user