mirror of
https://github.com/Readarr/Readarr
synced 2026-01-04 14:43:42 +01:00
Fix Build Issue due to localEpisode reference
This commit is contained in:
parent
48d31523a5
commit
6e7299cdf2
1 changed files with 1 additions and 1 deletions
|
|
@ -147,7 +147,7 @@ private ManualImportItem ProcessFile(string file, string downloadId, string fold
|
|||
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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue