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

Merge pull request from Bond-009/xmlasync2

Enable XmlReaderSettings.Async, fixes 
pull/7940/head
Claus Vium 3 years ago committed by GitHub
commit 1b8a251991
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -465,7 +465,8 @@ namespace MediaBrowser.Providers.Music
ValidationType = ValidationType.None,
CheckCharacters = false,
IgnoreProcessingInstructions = true,
IgnoreComments = true
IgnoreComments = true,
Async = true
};
using var reader = XmlReader.Create(oReader, settings);

Loading…
Cancel
Save