Allow Auto-Organize to succeed even if episode title cannot be determined

This commit is contained in:
softworkz 2016-01-10 06:56:32 +01:00
parent 182f1da03e
commit 9fbb304c47
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ namespace MediaBrowser.Server.Implementations.FileOrganization
{
seriesName = _fileSystem.GetValidFilename(seriesName).Trim();
if (episodeTitle == null)
if (string.IsNullOrEmpty(episodeTitle))
{
episodeTitle = string.Empty;
}