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/0e3d319a3aea3a3b951f0b058ce9f2d0e0c52a11/MediaBrowser.Model/Session/MessageCommand.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Session/MessageCommand.cs

14 lines
248 B

#pragma warning disable CS1591
6 years ago
namespace MediaBrowser.Model.Session
{
public class MessageCommand
{
public string Header { get; set; }
public string Text { get; set; }
public long? TimeoutMs { get; set; }
}
}