diff options
| author | softworkz <softworkz@hotmail.com> | 2015-10-04 04:00:43 +0200 |
|---|---|---|
| committer | softworkz <softworkz@hotmail.com> | 2015-10-04 04:02:51 +0200 |
| commit | 8259d14c50e2aa14ecb26875e52af6f0e3c7a436 (patch) | |
| tree | ff95fcf1a45b38d7d852e31d47a1b36be9d7ff38 | |
| parent | 073f7ac1aba72e37c383214b5999f339302ade14 (diff) | |
Renamed filter method
| -rw-r--r-- | MediaBrowser.Server.Implementations/FileOrganization/TvFolderOrganizer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/FileOrganization/TvFolderOrganizer.cs b/MediaBrowser.Server.Implementations/FileOrganization/TvFolderOrganizer.cs index a017f88ac..b84bf9514 100644 --- a/MediaBrowser.Server.Implementations/FileOrganization/TvFolderOrganizer.cs +++ b/MediaBrowser.Server.Implementations/FileOrganization/TvFolderOrganizer.cs @@ -35,7 +35,7 @@ namespace MediaBrowser.Server.Implementations.FileOrganization _providerManager = providerManager; } - private bool IsValidVideoFile(FileInfo fileInfo) + private bool FilterValidVideoFile(FileInfo fileInfo) { try { @@ -58,7 +58,7 @@ namespace MediaBrowser.Server.Implementations.FileOrganization var eligibleFiles = watchLocations.SelectMany(GetFilesToOrganize) .OrderBy(_fileSystem.GetCreationTimeUtc) - .Where(i => IsValidVideoFile(i) && i.Length >= minFileBytes) + .Where(i => FilterValidVideoFile(i) && i.Length >= minFileBytes) .ToList(); var processedFolders = new HashSet<string>(); |
