1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-22 20:11:04 -05:00

fix double hashing vault url

This commit is contained in:
Kyle Spearrin 2017-08-30 15:57:30 -04:00
parent 5bda2ef32f
commit 5021b71463

View File

@ -5,16 +5,6 @@
private string _webVaultUrl; private string _webVaultUrl;
public string SiteName { get; set; } public string SiteName { get; set; }
public string WebVaultUrl public string WebVaultUrl { get; set; }
{
get
{
return _webVaultUrl;
}
set
{
_webVaultUrl = string.Concat(value, "/#");
}
}
} }
} }