1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-27 10:07:10 +00:00

Trakt fixed DST issue, removing workaround

This commit is contained in:
Mark McDowall 2013-09-17 07:07:56 -07:00
parent 1f00b05259
commit bb72308afa

View file

@ -133,12 +133,6 @@ private static SeriesStatusType GetSeriesStatus(string status)
{
DateTime result;
//Todo: Remove this when DST ends and/or trakt fixes DST airings in EST/EDT
if (iso != null && iso.EndsWith("-05:00"))
{
iso = iso.Replace("-05:00", "-04:00");
}
if (!DateTime.TryParse(iso, out result))
return null;