Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/89a72a50cf7b23f2a363ed81b325e70c0dcf3119/NzbDrone.Core/MediaFiles/SameFilenameException.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.MediaFiles
|
|
|
|
|
{
|
|
|
|
|
public class SameFilenameException : Exception
|
|
|
|
|
{
|
|
|
|
|
public String Filename { get; set; }
|
|
|
|
|
|
|
|
|
|
public SameFilenameException(string message, string filename) : base(message)
|
|
|
|
|
{
|
|
|
|
|
Filename = filename;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|