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/151aa0f67827dd2fb336693f4d00216ebec2693f/MediaBrowser.Controller/Providers/MusicVideoInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Providers/MusicVideoInfo.cs

14 lines
254 B

#nullable disable
#pragma warning disable CS1591
using System.Collections.Generic;
6 years ago
namespace MediaBrowser.Controller.Providers
{
public class MusicVideoInfo : ItemLookupInfo
{
public IReadOnlyList<string> Artists { get; set; }
6 years ago
}
}