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

Merge pull request from MediaBrowser/dev

fix GetOtherDuplicatePaths
pull/702/head
Luke 9 years ago
commit cec3d7e6b4

@ -368,7 +368,7 @@ namespace MediaBrowser.Server.Implementations.FileOrganization
int? endingEpisodeNumber)
{
// TODO: Support date-naming?
if (!seasonNumber.HasValue || episodeNumber.HasValue)
if (!seasonNumber.HasValue || !episodeNumber.HasValue)
{
return new List<string>();
}

Loading…
Cancel
Save