Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/2a8b598f4fee0f518d01f0b09ea1578586af1d39?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
5 deletions
@ -11,6 +11,7 @@ namespace NzbDrone.Core.Repository
[SubSonicPrimaryKey(false)]
public virtual int EpisodeId { get ; set ; }
public virtual int SeriesId { get ; set ; }
public virtual int FileId { get ; set ; }
public int SeasonNumber { get ; set ; }
public int EpisodeNumber { get ; set ; }
public int SeasonId { get ; set ; }
@ -27,8 +28,8 @@ namespace NzbDrone.Core.Repository
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual Series Series { get ; private set ; }
[SubSonicTo ManyRelation ]
public virtual List< EpisodeFile> Files { get ; private set ; }
[SubSonicTo OneRelation(ThisClassContainsJoinKey = true) ]
public virtual EpisodeFile Episode File { get ; private set ; }
[SubSonicToManyRelation]
public virtual List < History > Histories { get ; private set ; }
@ -1,4 +1,5 @@
using System ;
using System.Collections.Generic ;
using NzbDrone.Core.Repository.Quality ;
using SubSonic.SqlGeneration.Schema ;
@ -8,7 +9,6 @@ namespace NzbDrone.Core.Repository
{
[SubSonicPrimaryKey]
public virtual int FileId { get ; set ; }
public int EpisodeId { get ; set ; }
public int SeriesId { get ; set ; }
public string Path { get ; set ; }
public QualityTypes Quality { get ; set ; }
@ -16,7 +16,7 @@ namespace NzbDrone.Core.Repository
public long Size { get ; set ; }
public DateTime DateAdded { get ; set ; }
[SubSonicTo OneRelation(ThisClassContainsJoinKey = true) ]
public virtual Episode Episode { get ; set ; }
[SubSonicTo ManyRelation ]
public virtual List< Episode> Episode s { get ; set ; }
}
}