Address comments

This commit is contained in:
Bond_009 2020-07-22 13:52:31 +02:00
parent febb6bced6
commit a23292f363
2 changed files with 5 additions and 3 deletions

View File

@ -111,7 +111,8 @@ namespace Emby.Server.Implementations.Services
CultureInfo.InvariantCulture, CultureInfo.InvariantCulture,
"Could not find method named {1}({0}) or Any({0}) on Service {2}", "Could not find method named {1}({0}) or Any({0}) on Service {2}",
requestDto.GetType().GetMethodName(), requestDto.GetType().GetMethodName(),
expectedMethodName, serviceType.GetMethodName())); expectedMethodName,
serviceType.GetMethodName()));
} }
private static async Task<object> GetTaskResult(Task task) private static async Task<object> GetTaskResult(Task task)

View File

@ -2,6 +2,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Mime;
using System.Reflection; using System.Reflection;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -59,11 +60,11 @@ namespace Emby.Server.Implementations.Services
{ {
if (format.Equals("json", StringComparison.Ordinal)) if (format.Equals("json", StringComparison.Ordinal))
{ {
return "application/json"; return MediaTypeNames.Application.Json;
} }
else if (format.Equals("xml", StringComparison.Ordinal)) else if (format.Equals("xml", StringComparison.Ordinal))
{ {
return "application/xml"; return MediaTypeNames.Application.Xml;
} }
return null; return null;