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/03e6cfde601fb92a5d6a6e50028a02a9d9bb66c8/MediaBrowser.Controller/Entities/Share.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

16 lines
291 B

using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities
{
public interface IHasShares
{
List<Share> Shares { get; set; }
}
public class Share
{
public string UserId { get; set; }
public bool CanEdit { get; set; }
}
}