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

Fixed exception when GetSeries(int seriesId) where seriesId didnt' exist

pull/7/merge
kay.one 14 years ago
parent f4a765817b
commit aa836f6a88

@ -44,7 +44,7 @@ namespace NzbDrone.Core.Providers
public virtual Series GetSeries(int seriesId)
{
return _database.Single<Series>("WHERE seriesId= @0", seriesId);
return _database.SingleOrDefault<Series>("WHERE seriesId= @0", seriesId);
}
/// <summary>

Loading…
Cancel
Save