Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/cdb195a44f4e7d3f0b3d93bbd18abbe57f9d1738/NzbDrone.Core/RootFolders/RootFolder.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Core/RootFolders/RootFolder.cs

15 lines
315 B

using System.Collections.Generic;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.RootFolders
{
public class RootFolder : ModelBase
{
public string Path { get; set; }
public long? FreeSpace { get; set; }
public List<UnmappedFolder> UnmappedFolders { get; set; }
}
}