Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/af88b3f80722519c58002eaf60c6d6cb2f16f08b?style=split&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Ensure Tracks is always present in ManualImportItem

Fixes error in manual import page when Tracks is missing.

Fixes Sentry LIDARR-UI-1GC
pull/768/head
ta264 6 years ago
parent 1212578c45
commit af88b3f807

@ -10,6 +10,11 @@ namespace NzbDrone.Core.MediaFiles.TrackImport.Manual
{ {
public class ManualImportItem : ModelBase public class ManualImportItem : ModelBase
{ {
public ManualImportItem()
{
Tracks = new List<Track>();
}
public string Path { get; set; } public string Path { get; set; }
public string RelativePath { get; set; } public string RelativePath { get; set; }
public string FolderName { get; set; } public string FolderName { get; set; }

Loading…
Cancel
Save