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

Fixed bug with duplicate episode naming.

pull/3113/head
Mark McDowall 14 years ago
parent 8170daf025
commit d2779d2cdf

@ -170,6 +170,9 @@ namespace NzbDrone.Core.Providers
if (parseResult.EpisodeNumbers == null)
return result;
//Set it to empty before looping through the episode numbers
parseResult.EpisodeTitle = String.Empty;
foreach (var episodeNumber in parseResult.EpisodeNumbers)
{
var episodeInfo = GetEpisode(parseResult.Series.SeriesId, parseResult.SeasonNumber, episodeNumber);

Loading…
Cancel
Save