Improved the status page with the suggestion from #29

This commit is contained in:
tidusjar 2016-03-22 11:06:43 +00:00
parent 8f7098d048
commit c4f57169ad
6 changed files with 28 additions and 3 deletions

View file

@ -27,6 +27,8 @@
using System.Dynamic;
using System.Linq;
using MarkdownSharp;
using Nancy;
using Nancy.Extensions;
using Nancy.ModelBinding;
@ -376,6 +378,8 @@ namespace PlexRequests.UI.Modules
{
var checker = new StatusChecker();
var status = checker.GetStatus();
var md = new Markdown();
status.ReleaseNotes = md.Transform(status.ReleaseNotes);
return View["Status", status];
}