mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-09 01:08:45 +01:00
Fix data extraction for alternative versions
This commit is contained in:
@@ -92,7 +92,8 @@ public class ChapterImagesTask : IScheduledTask
|
||||
EnableImages = false
|
||||
},
|
||||
SourceTypes = [SourceType.Library],
|
||||
IsVirtualItem = false
|
||||
IsVirtualItem = false,
|
||||
IncludeOwnedItems = true
|
||||
})
|
||||
.OfType<Video>()
|
||||
.ToList();
|
||||
|
||||
@@ -102,7 +102,8 @@ namespace MediaBrowser.Providers.MediaInfo
|
||||
DtoOptions = new DtoOptions(true),
|
||||
SourceTypes = new[] { SourceType.Library },
|
||||
Parent = library,
|
||||
Recursive = true
|
||||
Recursive = true,
|
||||
IncludeOwnedItems = true
|
||||
};
|
||||
|
||||
if (skipIfAudioTrackMatches)
|
||||
|
||||
@@ -60,6 +60,7 @@ public class KeyframeExtractionScheduledTask : IScheduledTask
|
||||
DtoOptions = new DtoOptions(true),
|
||||
SourceTypes = [SourceType.Library],
|
||||
Recursive = true,
|
||||
IncludeOwnedItems = true,
|
||||
Limit = Pagesize
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user