Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/522ef9d8d5c93b586a7566001aa1546d88541dde?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Don't append the extension when using ParsePath

pull/3113/head
Mark McDowall 9 years ago
parent a486bff40b
commit 522ef9d8d5

@ -270,7 +270,7 @@ namespace NzbDrone.Core.Parser
if (result == null)
{
Logger.Debug("Attempting to parse episode info using directory and file names. {0}", fileInfo.Directory.Name);
result = ParseTitle(fileInfo.Directory.Name + " " + fileInfo.Name + fileInfo.Extension);
result = ParseTitle(fileInfo.Directory.Name + " " + fileInfo.Name);
}
if (result == null)

Loading…
Cancel
Save