mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-22 15:56:58 +00:00
changed seriesid to string to avoid sqlite bug
This commit is contained in:
parent
96c75b15f0
commit
d870c82147
2 changed files with 3 additions and 3 deletions
|
@ -34,7 +34,7 @@ namespace NzbDrone.Core.Controllers
|
|||
|
||||
public Series GetSeries(int tvdbId)
|
||||
{
|
||||
return _sonioRepo.Single<Series>(s=> s.TvdbId == tvdbId);
|
||||
return _sonioRepo.Single<Series>(s=> s.TvdbId == tvdbId.ToString());
|
||||
}
|
||||
|
||||
|
||||
|
@ -67,7 +67,7 @@ namespace NzbDrone.Core.Controllers
|
|||
|
||||
private void AddShow(string path, TvdbSeries series)
|
||||
{
|
||||
_sonioRepo.Add(new Series { TvdbId = series.Id, SeriesName = series.SeriesName, AirTimes = series.AirsTime, AirsDayOfWeek = series.AirsDayOfWeek, Overview = series.Overview, Status = series.Status, Language = series.Language.Abbriviation, Path = path });
|
||||
_sonioRepo.Add(new Series { TvdbId = series.Id.ToString(), SeriesName = series.SeriesName, AirTimes = series.AirsTime, AirsDayOfWeek = series.AirsDayOfWeek, Overview = series.Overview, Status = series.Status, Language = series.Language.Abbriviation, Path = path });
|
||||
}
|
||||
}
|
||||
}
|
|
@ -6,7 +6,7 @@ namespace NzbDrone.Core.Repository
|
|||
public class Series
|
||||
{
|
||||
[SubSonicPrimaryKey]
|
||||
public int TvdbId
|
||||
public string TvdbId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
|
|
Loading…
Reference in a new issue