mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
fix boxsets hanging up library scan
This commit is contained in:
parent
46b9ebd48e
commit
e2ec83cbaa
1 changed files with 9 additions and 2 deletions
|
|
@ -17,9 +17,16 @@ namespace MediaBrowser.LocalMetadata.Parsers
|
|||
{
|
||||
case "CollectionItems":
|
||||
|
||||
using (var subReader = reader.ReadSubtree())
|
||||
if (!reader.IsEmptyElement)
|
||||
{
|
||||
FetchFromCollectionItemsNode(subReader, item);
|
||||
using (var subReader = reader.ReadSubtree())
|
||||
{
|
||||
FetchFromCollectionItemsNode(subReader, item);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
reader.Read();
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue