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

17 lines
431 B

10 years ago
using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class SyncDataResponse
{
public List<string> ItemIdsToRemove { get; set; }
public Dictionary<string, List<string>> ItemUserAccess { get; set; }
10 years ago
public SyncDataResponse()
{
ItemIdsToRemove = new List<string>();
ItemUserAccess = new Dictionary<string, List<string>>();
10 years ago
}
}
}