mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-08-06 14:17:06 +02:00
Merge pull request #7934 from Bond-009/xmlasync2
Enable XmlReaderSettings.Async, fixes #7929
(cherry picked from commit 1b8a251991
)
Signed-off-by: crobibero <cody@robibe.ro>
This commit is contained in:
parent
9c5d30c217
commit
06b2e7bcf5
@ -465,7 +465,8 @@ namespace MediaBrowser.Providers.Music
|
|||||||
ValidationType = ValidationType.None,
|
ValidationType = ValidationType.None,
|
||||||
CheckCharacters = false,
|
CheckCharacters = false,
|
||||||
IgnoreProcessingInstructions = true,
|
IgnoreProcessingInstructions = true,
|
||||||
IgnoreComments = true
|
IgnoreComments = true,
|
||||||
|
Async = true
|
||||||
};
|
};
|
||||||
|
|
||||||
using var reader = XmlReader.Create(oReader, settings);
|
using var reader = XmlReader.Create(oReader, settings);
|
||||||
|
Loading…
Reference in New Issue
Block a user