Parsing tvrage id from newznab with TryParse now
This commit is contained in:
parent
60dadf96a3
commit
c179e715a6
|
@ -33,7 +33,12 @@ namespace NzbDrone.Core.Indexers.Newznab
|
||||||
|
|
||||||
if (rageIdElement != null)
|
if (rageIdElement != null)
|
||||||
{
|
{
|
||||||
currentResult.TvRageId = Convert.ToInt32(rageIdElement.Attribute("value").Value);
|
int tvRageId;
|
||||||
|
|
||||||
|
if (Int32.TryParse(rageIdElement.Attribute("value").Value, out tvRageId))
|
||||||
|
{
|
||||||
|
currentResult.TvRageId = tvRageId;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -93,14 +93,10 @@ namespace NzbDrone.Core.Tv
|
||||||
_logger.WarnException("Couldn't update series path for " + series.Path, e);
|
_logger.WarnException("Couldn't update series path for " + series.Path, e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
_seriesService.UpdateSeries(series);
|
_seriesService.UpdateSeries(series);
|
||||||
|
|
||||||
_refreshEpisodeService.RefreshEpisodeInfo(series, tuple.Item2);
|
_refreshEpisodeService.RefreshEpisodeInfo(series, tuple.Item2);
|
||||||
|
|
||||||
_messageAggregator.PublishEvent(new SeriesUpdatedEvent(series));
|
_messageAggregator.PublishEvent(new SeriesUpdatedEvent(series));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue