aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Service/ControlErrorHandler.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-01-21 17:59:41 +0100
committerBond-009 <bond.009@outlook.com>2020-01-21 17:59:41 +0100
commitac3b958c6791a48217cda5625a68ffeb18fbcae6 (patch)
treecb8dae3faba19f2d88e17ab4d6b86dad88b97804 /Emby.Dlna/Service/ControlErrorHandler.cs
parent2610f377c0a15788badffd0720175109117af1ed (diff)
Use async methods
Diffstat (limited to 'Emby.Dlna/Service/ControlErrorHandler.cs')
-rw-r--r--Emby.Dlna/Service/ControlErrorHandler.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Dlna/Service/ControlErrorHandler.cs b/Emby.Dlna/Service/ControlErrorHandler.cs
index d5eb4a887..bbf975f38 100644
--- a/Emby.Dlna/Service/ControlErrorHandler.cs
+++ b/Emby.Dlna/Service/ControlErrorHandler.cs
@@ -6,11 +6,11 @@ using Emby.Dlna.Didl;
namespace Emby.Dlna.Service
{
- public class ControlErrorHandler
+ public static class ControlErrorHandler
{
private const string NS_SOAPENV = "http://schemas.xmlsoap.org/soap/envelope/";
- public ControlResponse GetResponse(Exception ex)
+ public static ControlResponse GetResponse(Exception ex)
{
var settings = new XmlWriterSettings
{