mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-24 23:15:23 -07:00
remove originallyAvailableAt again as requested
This commit is contained in:
parent
0d17cbf4fe
commit
d25ee81d4c
2 changed files with 1 additions and 2 deletions
|
@ -19,7 +19,7 @@ namespace Ombi.Api.Plex.Models
|
||||||
public string banner { get; set; }
|
public string banner { get; set; }
|
||||||
public string theme { get; set; }
|
public string theme { get; set; }
|
||||||
//public string duration { get; set; }
|
//public string duration { get; set; }
|
||||||
public string originallyAvailableAt { get; set; }
|
//public string originallyAvailableAt { get; set; }
|
||||||
public int leafCount { get; set; }
|
public int leafCount { get; set; }
|
||||||
public int viewedLeafCount { get; set; }
|
public int viewedLeafCount { get; set; }
|
||||||
public int childCount { get; set; }
|
public int childCount { get; set; }
|
||||||
|
|
|
@ -187,7 +187,6 @@ namespace Ombi.Schedule.Jobs.Plex
|
||||||
ParentKey = episode.parentRatingKey,
|
ParentKey = episode.parentRatingKey,
|
||||||
Key = episode.ratingKey,
|
Key = episode.ratingKey,
|
||||||
Title = episode.title,
|
Title = episode.title,
|
||||||
Aired = DateTime.TryParse(episode.originallyAvailableAt, out var parseDate) ? parseDate : (DateTime?)null,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue