fixed some bugs

This commit is contained in:
Mike Nolan 2022-02-24 15:35:38 -06:00
parent 5f3690b34d
commit 17868d9708
1 changed files with 20 additions and 16 deletions

View File

@ -472,7 +472,8 @@ namespace TYTD
StringBuilder builder = new StringBuilder(); StringBuilder builder = new StringBuilder();
foreach (var v in plitem.Videos) foreach (var v in plitem.Videos)
{ {
try
{
var item = JsonConvert.DeserializeObject<SavedVideo>(File.ReadAllText(Path.Combine("Info", $"{v}.json"))); var item = JsonConvert.DeserializeObject<SavedVideo>(File.ReadAllText(Path.Combine("Info", $"{v}.json")));
Dictionary<string, string> videos = new Dictionary<string, string>(); Dictionary<string, string> videos = new Dictionary<string, string>();
videos.AddEscapedHtml("Title", item.Title); videos.AddEscapedHtml("Title", item.Title);
@ -488,7 +489,10 @@ namespace TYTD
videos.AddEscapedHtml("Description", item.Description); videos.AddEscapedHtml("Description", item.Description);
videos.AddEscapedHtml("UploadDate", DateTime.Parse(item.UploadDate).ToShortDateString()); videos.AddEscapedHtml("UploadDate", DateTime.Parse(item.UploadDate).ToShortDateString());
builder.Append(Templating.RenderString(htmlBeforeProcessed, videos)); builder.Append(Templating.RenderString(htmlBeforeProcessed, videos));
}catch(Exception ex)
{
_ = ex;
}
} }
Dictionary<string, string> playlist = new Dictionary<string, string>(); Dictionary<string, string> playlist = new Dictionary<string, string>();