mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
Parsing tvrage id from newznab with TryParse now
This commit is contained in:
parent
60dadf96a3
commit
c179e715a6
@ -33,7 +33,12 @@ protected override ReportInfo PostProcessor(XElement item, ReportInfo currentRes
|
||||
|
||||
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 @@ private void RefreshSeriesInfo(Series series)
|
||||
_logger.WarnException("Couldn't update series path for " + series.Path, e);
|
||||
}
|
||||
|
||||
|
||||
_seriesService.UpdateSeries(series);
|
||||
|
||||
_refreshEpisodeService.RefreshEpisodeInfo(series, tuple.Item2);
|
||||
|
||||
_messageAggregator.PublishEvent(new SeriesUpdatedEvent(series));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user