1
0
mirror of https://github.com/bitwarden/server synced 2025-12-10 05:13:48 +00:00

trim quotes from env file value

This commit is contained in:
Kyle Spearrin
2018-11-06 16:31:11 -05:00
parent 16a4f6d932
commit f60d6d92f8

View File

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