Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/c179e715a6ff0f788bf6295f0c2a56dff4036805 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Parsing tvrage id from newznab with TryParse now

pull/4/head
Mark McDowall 12 years ago
parent 60dadf96a3
commit c179e715a6

@ -33,7 +33,12 @@ namespace NzbDrone.Core.Indexers.Newznab
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);
}
_seriesService.UpdateSeries(series);
_refreshEpisodeService.RefreshEpisodeInfo(series, tuple.Item2);
_messageAggregator.PublishEvent(new SeriesUpdatedEvent(series));
}
}
}
Loading…
Cancel
Save