mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 16:25:28 +03:00
Allow Auto-Organize to succeed even if episode title cannot be determined
This commit is contained in:
@@ -512,7 +512,7 @@ namespace MediaBrowser.Server.Implementations.FileOrganization
|
||||
{
|
||||
seriesName = _fileSystem.GetValidFilename(seriesName).Trim();
|
||||
|
||||
if (episodeTitle == null)
|
||||
if (string.IsNullOrEmpty(episodeTitle))
|
||||
{
|
||||
episodeTitle = string.Empty;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user