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

Better example when not renaming with NzbDrone

pull/2/head
Mark McDowall 12 years ago
parent 435904bc0a
commit 066bf4e8aa

@ -50,7 +50,7 @@ namespace NzbDrone.Api.Naming
var episodeFile = new EpisodeFile
{
Quality = new QualityModel(Quality.HDTV720p),
Path = @"C:\Test\Series.Title.S01E01.hdtv.avi"
Path = @"C:\Test\Series.Title.S01E01.720p.HDTV.x264-EVOLVE.mkv"
};
resource.SingleEpisodeExample = _buildFileNames.BuildFilename(new List<Episode> { episode1 },
@ -58,7 +58,7 @@ namespace NzbDrone.Api.Naming
episodeFile,
nameSpec);
episodeFile.Path = @"C:\Test\Series.Title.S01E01-E02.hdtv.avi";
episodeFile.Path = @"C:\Test\Series.Title.S01E01-E02.720p.HDTV.x264-EVOLVE.mkv";
resource.MultiEpisodeExample = _buildFileNames.BuildFilename(new List<Episode> { episode1, episode2 },
series,

Loading…
Cancel
Save