mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Added AirDateUtc for UTC offset time
This commit is contained in:
parent
7689b50dee
commit
eb5a15a8ca
18 changed files with 41 additions and 20 deletions
|
@ -69,7 +69,8 @@ namespace NzbDrone.Core.MetadataSource
|
|||
episode.EpisodeNumber = traktEpisode.number;
|
||||
episode.TvDbEpisodeId = traktEpisode.tvdb_id;
|
||||
episode.Title = traktEpisode.title;
|
||||
episode.AirDate = FromIso(traktEpisode.first_aired_iso);
|
||||
episode.AirDate = FromEpoch(traktEpisode.first_aired);
|
||||
episode.AirDateUtc = FromIso(traktEpisode.first_aired_iso);
|
||||
|
||||
return episode;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue