Merge pull request #2031 from softworkz/FixUriException

Avoid frequent Exception
pull/702/head
Luke 9 years ago committed by GitHub
commit 8ac4434d7a

@ -65,12 +65,11 @@ namespace MediaBrowser.Server.Implementations.Connect
if (!string.IsNullOrWhiteSpace(address))
{
try
{
address = new Uri(address).Host;
}
catch
Uri newUri;
if (Uri.TryCreate(address, UriKind.Absolute, out newUri))
{
address = newUri.Host;
}
}

Loading…
Cancel
Save