Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/4cc98114478bea4e56bb4b18fb5775ed30824f8b/MediaBrowser.Common/Extensions/MethodNotAllowedException.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Common/Extensions/MethodNotAllowedException.cs

27 lines
707 B

using System;
namespace MediaBrowser.Common.Extensions
{
/// <summary>
/// Class MethodNotAllowedException.
/// </summary>
public class MethodNotAllowedException : Exception
{
/// <summary>
/// Initializes a new instance of the <see cref="MethodNotAllowedException" /> class.
/// </summary>
public MethodNotAllowedException()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="MethodNotAllowedException" /> class.
/// </summary>
/// <param name="message">The message.</param>
public MethodNotAllowedException(string message)
: base(message)
{
}
}
}