Trakt fixed DST issue, removing workaround

pull/3113/head
Mark McDowall 11 years ago
parent 1f00b05259
commit bb72308afa

@ -133,12 +133,6 @@ namespace NzbDrone.Core.MetadataSource
{ {
DateTime result; 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)) if (!DateTime.TryParse(iso, out result))
return null; return null;

Loading…
Cancel
Save