1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-24 11:43:07 +01: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 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Manual
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);