1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 00:03:22 +00:00

fix baseurl check when return web vault url

This commit is contained in:
Kyle Spearrin
2019-07-05 13:46:54 -04:00
parent 2e562e8318
commit 9af6aae699

View File

@@ -33,7 +33,7 @@ namespace Bit.Core.Services
{ {
return WebVaultUrl; return WebVaultUrl;
} }
else if(string.IsNullOrWhiteSpace(BaseUrl)) else if(!string.IsNullOrWhiteSpace(BaseUrl))
{ {
return BaseUrl; return BaseUrl;
} }