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/56a98a3bb0cc6efcc0d533164aeb8879045d646f/MediaBrowser.Model/Tasks/TaskCompletionEventArgs.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Tasks/TaskCompletionEventArgs.cs

20 lines
404 B

#pragma warning disable CS1591
using System;
namespace MediaBrowser.Model.Tasks
{
public class TaskCompletionEventArgs : EventArgs
{
public TaskCompletionEventArgs(IScheduledTaskWorker task, TaskResult result)
{
Task = task;
Result = result;
}
public IScheduledTaskWorker Task { get; }
public TaskResult Result { get; }
}
}