Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/c07bef0e1bda0273ae2464f6744ac77cf2995bae You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed merge conflict

pull/3113/head
Mark McDowall 12 years ago
parent b6b3d26868
commit c07bef0e1b

@ -67,6 +67,11 @@ namespace NzbDrone.Core.MediaFiles
return _mediaFileRepository.GetFilesBySeries(seriesId);
}
public List<EpisodeFile> GetFilesBySeason(int seriesId, int seasonNumber)
{
return _mediaFileRepository.GetFilesBySeason(seriesId, seasonNumber);
}
public List<string> FilterExistingFiles(List<string> files, int seriesId)
{
var seriesFiles = GetFilesBySeries(seriesId);

Loading…
Cancel
Save