Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/bceaee27a379bd81be43832b06180d8f84fa12a6/Marr.Data/DataMappingException.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/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)
{
}
}
}