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