mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-20 18:02:44 +01:00
changed seriesid to string to avoid sqlite bug
This commit is contained in:
parent
96c75b15f0
commit
d870c82147
@ -34,7 +34,7 @@ public IQueryable<Series> GetSeries()
|
||||
|
||||
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 @@ private void AddShow(string path)
|
||||
|
||||
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 New Issue
Block a user