Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/src/commit/7689b50dee1d4ac4bde00a1ae02c01db1373de98/Marr.Data/DataMappingException.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/Marr.Data/DataMappingException.cs

23 lines
427 B

using System;
namespace Marr.Data
{
public class DataMappingException : Exception
{
public DataMappingException()
: base()
{
}
public DataMappingException(string message)
: base(message)
{
}
public DataMappingException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}