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/599c898c0c063440f4129b0c2cbce31ea51e33dc/MediaBrowser.Model/Sync/SyncJobCreationResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Sync/SyncJobCreationResult.cs

16 lines
332 B

using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class SyncJobCreationResult
{
public SyncJob Job { get; set; }
public List<SyncJobItem> JobItems { get; set; }
public SyncJobCreationResult()
{
JobItems = new List<SyncJobItem>();
}
}
}