mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-08 10:44:23 -04:00
Allow Auto-Organize to succeed even if episode title cannot be determined
This commit is contained in:
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…
x
Reference in New Issue
Block a user