Fix Build Issue due to localEpisode reference

This commit is contained in:
Qstick
2017-09-17 16:47:51 -04:00
committed by GitHub
parent 48d31523a5
commit 6e7299cdf2

View File

@@ -147,7 +147,7 @@ namespace NzbDrone.Core.MediaFiles.TrackImport.Manual
var localTrack = new LocalTrack();
localTrack.Path = file;
localTrack.Quality = QualityParser.ParseQuality(file);
localEpisode.Language = LanguageParser.ParseLanguage(file);
localTrack.Language = LanguageParser.ParseLanguage(file);
localTrack.Size = _diskProvider.GetFileSize(file);
return MapItem(new ImportDecision(localTrack, new Rejection("Unknown Artist")), folder, downloadId);