mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 17:27:59 +00:00
Fixed exception when GetSeries(int seriesId) where seriesId didnt' exist
This commit is contained in:
parent
f4a765817b
commit
aa836f6a88
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
@ -44,7 +44,7 @@ public virtual IList<Series> GetAllSeries()
|
||||||
|
|
||||||
public virtual Series GetSeries(int seriesId)
|
public virtual Series GetSeries(int seriesId)
|
||||||
{
|
{
|
||||||
return _database.Single<Series>("WHERE seriesId= @0", seriesId);
|
return _database.SingleOrDefault<Series>("WHERE seriesId= @0", seriesId);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in a new issue