Enable XmlReaderSettings.Async, fixes #7929

This commit is contained in:
Bond_009 2022-06-14 18:15:56 +02:00
parent d73e9f3af5
commit 16fba6035c

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