Updated MiniProfiler to v2

This commit is contained in:
Mark McDowall 2012-07-27 14:31:33 -07:00
parent 95cdaf25f6
commit 216bf08ced
16 changed files with 2407 additions and 123 deletions

View file

@ -1,4 +1,5 @@
using System.Web.Mvc;
using StackExchange.Profiling;
namespace NzbDrone.Web.Controllers
{
@ -7,7 +8,7 @@ namespace NzbDrone.Web.Controllers
[HttpGet]
public JsonResult Index()
{
MvcMiniProfiler.MiniProfiler.Stop(true);
MiniProfiler.Stop(true);
return Json("OK", JsonRequestBehavior.AllowGet);
}