mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-07 10:14:14 -04:00
Avoid frequent Exception
This commit is contained in:
parent
894d87fabb
commit
05b53d1f30
@ -65,12 +65,11 @@ namespace MediaBrowser.Server.Implementations.Connect
|
|||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(address))
|
if (!string.IsNullOrWhiteSpace(address))
|
||||||
{
|
{
|
||||||
try
|
Uri newUri;
|
||||||
{
|
|
||||||
address = new Uri(address).Host;
|
if (Uri.TryCreate(address, UriKind.Absolute, out newUri))
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
{
|
||||||
|
address = newUri.Host;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user