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

Merge pull request from crobibero/fix-name-cleaning

Only trim file name if folder name is shorter
pull/4562/head
dkanada 4 years ago committed by GitHub
commit 02c1879533
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -227,7 +227,11 @@ namespace Emby.Naming.Video
testFilename = cleanName.ToString();
}
testFilename = testFilename.Substring(folderName.Length).Trim();
if (folderName.Length <= testFilename.Length)
{
testFilename = testFilename.Substring(folderName.Length).Trim();
}
return string.IsNullOrEmpty(testFilename)
|| testFilename[0].Equals('-')
|| testFilename[0].Equals('_')

Loading…
Cancel
Save