aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-30 15:58:07 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-30 15:58:07 -0400
commit3387dac01d7125f830a77f5d0446fda336e294cd (patch)
tree5019e0402c037d301fc5f46584c46a2d1bdb07e7 /MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
parenta880a44f4aa29a42205007cd20cd06fc66278e62 (diff)
remote control progress
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs')
-rw-r--r--MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
index 023df3177..f4bf501e3 100644
--- a/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
+++ b/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
@@ -308,7 +308,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
RaiseReceiveWebRequest(context);
- await Task.Run(() =>
+ await Task.Factory.StartNew(() =>
{
try
{
@@ -318,6 +318,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
{
_logger.ErrorException("ProcessRequest failure", ex);
}
+
}).ConfigureAwait(false);
}