Merge pull request #7934 from Bond-009/xmlasync2

Enable XmlReaderSettings.Async, fixes #7929
This commit is contained in:
Claus Vium 2022-06-14 21:24:19 +02:00 committed by GitHub
commit 1b8a251991
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);