Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/6e7299cdf2f7842caa20cd81f71271d665325543 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix Build Issue due to localEpisode reference

pull/84/head
Qstick 8 years ago committed by GitHub
parent 48d31523a5
commit 6e7299cdf2

@ -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);

Loading…
Cancel
Save