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/a48f9a32e8964418881a283e7f2e002d8fc18f1e/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; }
}
}