mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-29 23:12:39 +01:00
changed seriesid to string to avoid sqlite bug
This commit is contained in:
parent
96c75b15f0
commit
d870c82147
@ -34,7 +34,7 @@ namespace NzbDrone.Core.Controllers
|
|||||||
|
|
||||||
public Series GetSeries(int tvdbId)
|
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)
|
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
|
public class Series
|
||||||
{
|
{
|
||||||
[SubSonicPrimaryKey]
|
[SubSonicPrimaryKey]
|
||||||
public int TvdbId
|
public string TvdbId
|
||||||
{
|
{
|
||||||
get;
|
get;
|
||||||
set;
|
set;
|
||||||
|
Loading…
Reference in New Issue
Block a user