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

26 lines
499 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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)
{
}
}
}