Update Program.cs
This commit is contained in:
parent
844f217860
commit
9957fa5f9a
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ namespace LightReflectiveMirror
|
||||||
|
|
||||||
GetPublicIP();
|
GetPublicIP();
|
||||||
|
|
||||||
bool noConfig = bool.TryParse(Environment.GetEnvironmentVariable("NO_CONFIG") ?? "false", out noConfig) ? false : noConfig;
|
bool noConfig = bool.Parse(Environment.GetEnvironmentVariable("NO_CONFIG") ?? "false");
|
||||||
|
|
||||||
if (!File.Exists(CONFIG_PATH) && !noConfig)
|
if (!File.Exists(CONFIG_PATH) && !noConfig)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue