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

pull/702/head
softworkz 9 years ago
parent 182f1da03e
commit 9fbb304c47

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

Loading…
Cancel
Save