MiniProfiler AddProfilerResults Null Reference

Memba

New Member
I have the following code with the nugget version (2.1.0) of MiniProfiler library:\[code\]MiniProfiler.Start();var profiler = MiniProfiler.Current;var innerProfiler = new MiniProfiler("Inner profiler");var profilerString = MiniProfiler.ToJson(innerProfiler);var newInnerProfiler = MiniProfiler.FromJson(profilerString);profiler.AddProfilerResults(newInnerProfiler);MiniProfiler.Stop();\[/code\]When it reaches Stop() I'm getting a Null Reference Exception. I've found the issue here: https://code.google.com/p/mvc-mini-profiler/issues/detail?can=2&start=0&num=100&q=&colspec=ID%20Type%20Status%20Priority%20Milestone%20Owner%20Summary&groupby=&sort=&id=39 and it
 
Top