mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Address comments
This commit is contained in:
parent
ea446fd4a3
commit
3f13851be5
@ -277,7 +277,8 @@ namespace Emby.Server.Implementations.HttpServer
|
|||||||
|
|
||||||
private object ToOptimizedResultInternal<T>(IRequest request, T dto, IDictionary<string, string> responseHeaders = null)
|
private object ToOptimizedResultInternal<T>(IRequest request, T dto, IDictionary<string, string> responseHeaders = null)
|
||||||
{
|
{
|
||||||
var contentType = request.ResponseContentType?.Split(';')[0];
|
// TODO: @bond use Span and .Equals
|
||||||
|
var contentType = request.ResponseContentType?.Split(';')[0].Trim().ToLowerInvariant();
|
||||||
|
|
||||||
switch (contentType)
|
switch (contentType)
|
||||||
{
|
{
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AssemblyName>jellyfin</AssemblyName>
|
<AssemblyName>jellyfin</AssemblyName>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.2</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
@ -194,8 +194,8 @@ namespace Jellyfin.Server.SocketSharp
|
|||||||
{
|
{
|
||||||
// TODO: @bond move to Span when Span.Split lands
|
// TODO: @bond move to Span when Span.Split lands
|
||||||
// https://github.com/dotnet/corefx/issues/26528
|
// https://github.com/dotnet/corefx/issues/26528
|
||||||
var contentType = acceptsType?.Split(';')[0];
|
var contentType = acceptsType?.Split(';')[0].Trim();
|
||||||
acceptsAnything = contentType.IndexOf("*/*", StringComparison.Ordinal) != -1;
|
acceptsAnything = contentType.Equals("*/*", StringComparison.OrdinalIgnoreCase);
|
||||||
|
|
||||||
if (acceptsAnything)
|
if (acceptsAnything)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user