diff --git a/LiteCharms.Features/Extensions/Api.cs b/LiteCharms.Features/Extensions/Api.cs index df8fe23..ef50663 100644 --- a/LiteCharms.Features/Extensions/Api.cs +++ b/LiteCharms.Features/Extensions/Api.cs @@ -69,8 +69,10 @@ public static class Api if (!string.IsNullOrWhiteSpace(urls)) { - string firstUrl = urls.Split(';').FirstOrDefault(s => s.Contains("http://"))! - .Replace("*", "localhost").Replace("+", "localhost"); + string firstUrl = urls.Split(';').FirstOrDefault(s => s.Contains("http://"))! + .Replace("0.0.0.0", "localhost") + .Replace("*", "localhost") + .Replace("+", "localhost"); healthUrl = $"{firstUrl.TrimEnd('/')}/health"; }