aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-04-27 14:12:44 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-04-27 14:12:44 -0400
commitda39d9a5bf9656f35501c5e11982240192ce34a2 (patch)
tree17a4044bc91540e49045174cf93de692e0929b0d /Emby.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs
parentffb935700cc2d9ac47a81e43cf2187ff8c78957a (diff)
update folder queries
Diffstat (limited to 'Emby.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs')
-rw-r--r--Emby.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs b/Emby.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs
index 0a9c67285..7b64c582a 100644
--- a/Emby.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs
+++ b/Emby.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs
@@ -470,7 +470,7 @@ namespace Emby.Server.Implementations.FileOrganization
return new List<string>();
}
- var episodePaths = series.GetRecursiveChildren()
+ var episodePaths = series.GetRecursiveChildren(i => i is Episode)
.OfType<Episode>()
.Where(i =>
{