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

Merge pull request from sel10ut/bugfix/fix-audio-title

Change parsing logic of audio track title
pull/11172/head
Bond-009 1 year ago committed by GitHub
commit 1424723a75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -348,9 +348,9 @@ namespace MediaBrowser.Providers.MediaInfo
} }
} }
if (!audio.LockedFields.Contains(MetadataField.Name)) if (!audio.LockedFields.Contains(MetadataField.Name) && !string.IsNullOrEmpty(tags.Title))
{ {
audio.Name = options.ReplaceAllMetadata || string.IsNullOrEmpty(audio.Name) ? tags.Title : audio.Name; audio.Name = tags.Title;
} }
if (options.ReplaceAllMetadata) if (options.ReplaceAllMetadata)

Loading…
Cancel
Save