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/0ab173dd39d4ed05f400deabfedbabced0466763/NzbDrone.Web/Models/SettingsModels.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Web/Models/SettingsModels.cs

28 lines
505 B

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Security;
namespace NzbDrone.Web.Models
{
public class SettingsModel
{
[Required]
[DataType(DataType.Text)]
[DisplayName("TV Folder")]
public String TvFolder
{
get;
set;
}
}
}