Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/9fd2f9ec72c00a4f66057ecc2c8aa78f117bc8f6?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed notification messages for Season searches.

pull/7/merge
Mark McDowall 14 years ago
parent 854cd26e5a
commit 9fd2f9ec72

@ -50,7 +50,7 @@ namespace NzbDrone.Core.Providers
return false;
}
notification.CurrentMessage = String.Format("Searching for {0} Season {1}", series, seasonNumber);
notification.CurrentMessage = String.Format("Searching for {0} Season {1}", series.Title, seasonNumber);
var indexers = _indexerProvider.GetEnabledIndexers();
var reports = new List<EpisodeParseResult>();
@ -242,7 +242,7 @@ namespace NzbDrone.Core.Providers
return new List<int>();
}
notification.CurrentMessage = String.Format("Searching for {0} Season {1}", series, seasonNumber);
notification.CurrentMessage = String.Format("Searching for {0} Season {1}", series.Title, seasonNumber);
var indexers = _indexerProvider.GetEnabledIndexers();
var reports = new List<EpisodeParseResult>();

Loading…
Cancel
Save