mirror of
https://github.com/bitwarden/android.git
synced 2025-03-14 02:08:48 +03:00
fix baseurl check when return web vault url
This commit is contained in:
parent
2e562e8318
commit
9af6aae699
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ namespace Bit.Core.Services
|
|||
{
|
||||
return WebVaultUrl;
|
||||
}
|
||||
else if(string.IsNullOrWhiteSpace(BaseUrl))
|
||||
else if(!string.IsNullOrWhiteSpace(BaseUrl))
|
||||
{
|
||||
return BaseUrl;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue