Default to empty string for IpAddress to allow to fallback into existing experience (#1859)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
This commit is contained in:
parent
f85e131af9
commit
a491de0a04
1 changed files with 2 additions and 2 deletions
|
|
@ -177,7 +177,7 @@ public static class Configuration
|
||||||
{
|
{
|
||||||
if (new OsInfo(Array.Empty<IOsVersionAdapter>()).IsDocker)
|
if (new OsInfo(Array.Empty<IOsVersionAdapter>()).IsDocker)
|
||||||
{
|
{
|
||||||
return DefaultIPAddresses;
|
return string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
try
|
try
|
||||||
|
|
@ -196,7 +196,7 @@ public static class Configuration
|
||||||
Console.WriteLine("Error writing app settings: " + ex.Message);
|
Console.WriteLine("Error writing app settings: " + ex.Message);
|
||||||
}
|
}
|
||||||
|
|
||||||
return DefaultIPAddresses;
|
return string.Empty;
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue