1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-27 02:43:57 +02:00

Don't set ReleaseGroup twice in while building LocalEpisode

This commit is contained in:
Qstick 2021-12-23 18:20:17 -06:00 committed by GitHub
parent b90e25f652
commit de528fff42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -293,7 +293,6 @@ private ManualImportItem ProcessFile(string rootFolder, string baseFolder, strin
localEpisode.Path = file;
localEpisode.ReleaseGroup = Parser.Parser.ParseReleaseGroup(file);
localEpisode.Quality = QualityParser.ParseQuality(file);
localEpisode.ReleaseGroup = Parser.Parser.ParseReleaseGroup(file);
localEpisode.Language = LanguageParser.ParseLanguage(file);
localEpisode.Size = _diskProvider.GetFileSize(file);