Fixed handler async

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti 2012-08-15 22:42:45 -04:00
parent 78bbb1cf8f
commit 3802297b1b

View File

@ -22,13 +22,13 @@ namespace MediaBrowser.Api
{ {
var httpServer = Kernel.Instance.HttpServer; var httpServer = Kernel.Instance.HttpServer;
httpServer.Where(ctx => ctx.Request.Url.LocalPath.IndexOf("/api/", StringComparison.OrdinalIgnoreCase) != -1).Subscribe(ctx => httpServer.Where(ctx => ctx.Request.Url.LocalPath.IndexOf("/api/", StringComparison.OrdinalIgnoreCase) != -1).Subscribe(async (ctx) =>
{ {
BaseHandler handler = GetHandler(ctx); BaseHandler handler = GetHandler(ctx);
if (handler != null) if (handler != null)
{ {
handler.ProcessRequest(ctx); await handler.ProcessRequest(ctx);
} }
}); });
} }