Update LanFilteringMiddleware.cs

This commit is contained in:
BaronGreenback 2020-09-15 13:47:01 +01:00 committed by GitHub
parent b04aed2f58
commit 40464a6fdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 13 deletions

View File

@ -43,18 +43,6 @@ namespace Jellyfin.Server.Middleware
}
await _next(httpContext).ConfigureAwait(false);
}
private static string NormalizeConfiguredLocalAddress(string address)
{
var add = address.AsSpan().Trim('/');
int index = add.IndexOf('/');
if (index != -1)
{
add = add.Slice(index + 1);
}
return add.TrimStart('/').ToString();
}
}
}
}