diff --git a/Pages/Index.cshtml b/Pages/Index.cshtml index b049255..2681b37 100644 --- a/Pages/Index.cshtml +++ b/Pages/Index.cshtml @@ -1,9 +1,10 @@ @page @using System.IO +@using System.Web @model IndexModel @{ if (Model.LogConditionsMet) - ViewData["Title"] = $"{Model.LogArtist} - {Model.LogAlbum} ~ webmusic on .NET {Environment.Version}"; + ViewData["Title"] = $"{HttpUtility.UrlDecode(Model.LogArtist)} - {Model.LogAlbum} ~ webmusic on .NET {Environment.Version}"; else ViewData["Title"] = $"{Model.Displaypath} - webmusic on .NET {Environment.Version}"; }