Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/6583b10975611ef69c60bdf2383aaf447235177a/NzbDrone.Core/Datastore/Events/ModelEvent.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Core/Datastore/Events/ModelEvent.cs

27 lines
509 B

using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.Datastore.Events
{
12 years ago
public class ModelEvent <TModel> : IEvent
{
12 years ago
public TModel Model { get; set; }
public ModelAction Action { get; set; }
12 years ago
public ModelEvent(TModel model, ModelAction action)
{
Model = model;
Action = action;
}
}
12 years ago
public enum ModelAction
{
12 years ago
Unknow = 0,
Created = 1,
Updated = 2,
12 years ago
Deleted = 3,
Sync = 4
}
}