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/cff2b7fed1edb55cf62f723b5ce96ae918f4b049/Emby.Notifications/NotificationConfigurationFactory.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Emby.Notifications/NotificationConfigurationFa...

24 lines
613 B

#pragma warning disable CS1591
using System.Collections.Generic;
using MediaBrowser.Common.Configuration;
using MediaBrowser.Model.Notifications;
namespace Emby.Notifications
{
public class NotificationConfigurationFactory : IConfigurationFactory
{
public IEnumerable<ConfigurationStore> GetConfigurations()
{
return new ConfigurationStore[]
{
new ConfigurationStore
{
Key = "notifications",
ConfigurationType = typeof(NotificationOptions)
}
};
}
}
}