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/f838ae0a465c5a788637ff30062a706fd26a0876/MediaBrowser.Model/News/NewsItem.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/News/NewsItem.cs

15 lines
361 B

using System;
namespace MediaBrowser.Model.News
{
public class NewsItem
{
public string Title { get; set; }
public string Link { get; set; }
public string Description { get; set; }
public string DescriptionHtml { get; set; }
public string Guid { get; set; }
public DateTime Date { get; set; }
}
}