From 69a19b14c8ee7548de1253f158be7b6e40767e5b Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 27 Jul 2012 15:33:47 -0700 Subject: [PATCH] Allow profiling on remote connections --- NzbDrone.Web/App_Start/MiniProfiler.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NzbDrone.Web/App_Start/MiniProfiler.cs b/NzbDrone.Web/App_Start/MiniProfiler.cs index 63375453a..0aaa711bc 100644 --- a/NzbDrone.Web/App_Start/MiniProfiler.cs +++ b/NzbDrone.Web/App_Start/MiniProfiler.cs @@ -84,7 +84,8 @@ namespace NzbDrone.Web.App_Start var request = ((HttpApplication)sender).Request; //TODO: By default only local requests are profiled, optionally you can set it up // so authenticated users are always profiled - if (request.IsLocal) { MiniProfiler.Start(); } + //if (request.IsLocal) { MiniProfiler.Start(); } + MiniProfiler.Start(); };