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

15 lines
314 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; }
}
}