Skip to content

Commit

Permalink
Search for items recursively in task. Fixes #94.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicknsy committed Mar 13, 2023
1 parent 707400b commit 9d9d417
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Nick.Plugin.Jellyscrub/ScheduledTasks/BIFGenerationTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ public async Task ExecuteAsync(IProgress<double> progress, CancellationToken can
var items = _libraryManager.GetItemList(new InternalItemsQuery
{
MediaTypes = new[] { MediaType.Video },
IsVirtualItem = false
IsVirtualItem = false,
Recursive = true

}).OfType<Video>().ToList();

Expand Down

0 comments on commit 9d9d417

Please sign in to comment.