1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-03 05:35:29 +00:00

Fixed: Renaming episodes for a series

Closes #6640
This commit is contained in:
Bogdan 2024-04-10 02:13:59 +03:00 committed by GitHub
parent f4c19a384b
commit fc06e51352
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -122,7 +122,11 @@ namespace NzbDrone.Core.MediaFiles
}
episodeFile.RelativePath = series.Path.GetRelativePath(destinationFilePath);
if (localEpisode is not null)
{
localEpisode.FileNameBeforeRename = episodeFile.RelativePath;
}
if (localEpisode is not null && _scriptImportDecider.TryImport(episodeFilePath, destinationFilePath, localEpisode, episodeFile, mode) is var scriptImportDecision && scriptImportDecision != ScriptImportDecision.DeferMove)
{