mirror of
https://github.com/bitwarden/mobile
synced 2025-12-18 17:23:18 +00:00
restrictions apparantly cannot have a null default value
This commit is contained in:
@@ -163,7 +163,7 @@ namespace Bit.App.Utilities
|
||||
{
|
||||
await environmentService.SetUrlsAsync(new Core.Models.Data.EnvironmentUrlData
|
||||
{
|
||||
Base = setting.Value,
|
||||
Base = string.IsNullOrWhiteSpace(setting.Value) ? null : setting.Value,
|
||||
Api = environmentService.ApiUrl,
|
||||
Identity = environmentService.IdentityUrl,
|
||||
WebVault = environmentService.WebVaultUrl,
|
||||
|
||||
Reference in New Issue
Block a user