mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Enable XmlReaderSettings.Async, fixes #7929
This commit is contained in:
parent
d73e9f3af5
commit
16fba6035c
@ -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…
x
Reference in New Issue
Block a user