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

New: Use filename without extension if SceneName is unavailable

Fixe 
pull/7690/head
Qstick 2 years ago
parent 691a8955fe
commit 20c7e84676

@ -41,7 +41,12 @@ namespace NzbDrone.Core.MediaFiles
if (RelativePath.IsNotNullOrWhiteSpace())
{
return System.IO.Path.GetFileName(RelativePath);
return System.IO.Path.GetFileNameWithoutExtension(RelativePath);
}
if (Path.IsNotNullOrWhiteSpace())
{
return System.IO.Path.GetFileNameWithoutExtension(Path);
}
return string.Empty;

Loading…
Cancel
Save