Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/src/commit/663d517e98d3af1136befdc747cefe4b8fd64ea7/PlexRequests.Core/SettingModels/PushBulletNotificationSettings.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/PlexRequests.Core/SettingModels/PushBulletNotificationSetti...

9 lines
270 B

namespace PlexRequests.Core.SettingModels
{
public class PushbulletNotificationSettings : Settings
{
public bool Enabled { get; set; }
public string AccessToken { get; set; }
public string DeviceIdentifier { get; set; }
}
}