remove originallyAvailableAt again as requested

This commit is contained in:
adamworley 2020-10-18 09:08:47 +01:00
commit d25ee81d4c
2 changed files with 1 additions and 2 deletions

View file

@ -19,7 +19,7 @@ namespace Ombi.Api.Plex.Models
public string banner { get; set; }
public string theme { get; set; }
//public string duration { get; set; }
public string originallyAvailableAt { get; set; }
//public string originallyAvailableAt { get; set; }
public int leafCount { get; set; }
public int viewedLeafCount { get; set; }
public int childCount { get; set; }

View file

@ -187,7 +187,6 @@ namespace Ombi.Schedule.Jobs.Plex
ParentKey = episode.parentRatingKey,
Key = episode.ratingKey,
Title = episode.title,
Aired = DateTime.TryParse(episode.originallyAvailableAt, out var parseDate) ? parseDate : (DateTime?)null,
});
}