diff options
| author | softworkz <softworkz@hotmail.com> | 2016-01-10 06:56:32 +0100 |
|---|---|---|
| committer | softworkz <softworkz@hotmail.com> | 2016-01-12 05:54:27 +0100 |
| commit | 9fbb304c475d10fd238c16cbbab9a81ebdea0593 (patch) | |
| tree | 7bf8a958b2576b84605e571bcbe8e9fa73a13b57 | |
| parent | 182f1da03e668fe7b99113fc88721fa95bf18ad7 (diff) | |
Allow Auto-Organize to succeed even if episode title cannot be determined
| -rw-r--r-- | MediaBrowser.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs b/MediaBrowser.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs index 7c803793a..c27d266c3 100644 --- a/MediaBrowser.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs +++ b/MediaBrowser.Server.Implementations/FileOrganization/EpisodeFileOrganizer.cs @@ -512,7 +512,7 @@ namespace MediaBrowser.Server.Implementations.FileOrganization { seriesName = _fileSystem.GetValidFilename(seriesName).Trim(); - if (episodeTitle == null) + if (string.IsNullOrEmpty(episodeTitle)) { episodeTitle = string.Empty; } |
