1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

Fix SQL Connection String (#1584)

* Update SQL connection string storage method

* Revert Docker Compose template

* Revert Docker Compose Builder version back to 3
This commit is contained in:
Vince Grassia
2021-09-16 10:54:46 -04:00
committed by GitHub
parent c22e48c1b4
commit ff8d736e8b
2 changed files with 3 additions and 3 deletions

View File

@ -105,7 +105,7 @@ namespace Bit.Setup
{
if (line.StartsWith($"{key}="))
{
return line.Split(new char[] { '=' }, 2)[1].Trim('"');
return line.Split(new char[] { '=' }, 2)[1].Trim('"').Replace("\\\"", "\"");
}
}