mirror of
https://github.com/bitwarden/server.git
synced 2025-04-08 14:38:15 -05:00
trim quotes from env file value
This commit is contained in:
parent
16a4f6d932
commit
f60d6d92f8
@ -105,7 +105,7 @@ namespace Bit.Setup
|
|||||||
{
|
{
|
||||||
if(line.StartsWith($"{key}="))
|
if(line.StartsWith($"{key}="))
|
||||||
{
|
{
|
||||||
return line.Split(new char[] { '=' }, 2)[1];
|
return line.Split(new char[] { '=' }, 2)[1].Trim('"');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user