1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 13:38:13 -05: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('"');
}
}