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

14 lines
219 B

#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Controller.Entities
{
public class Share
{
public string UserId { get; set; }
public bool CanEdit { get; set; }
}
}