Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/f1e129f17afb1ddbea7f1018f81a7af87cbfada7/MediaBrowser.Providers/Plugins/AudioDb/Configuration/PluginConfiguration.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Providers/Plugins/AudioDb/Configuration/PluginConfiguration.cs

14 lines
291 B

#pragma warning disable CS1591
using MediaBrowser.Model.Plugins;
namespace MediaBrowser.Providers.Plugins.AudioDb
{
public class PluginConfiguration : BasePluginConfiguration
{
public bool Enable { get; set; }
public bool ReplaceAlbumName { get; set; }
}
}