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

25 lines
512 B

#nullable disable
#pragma warning disable CS1591
6 years ago
using System;
using System.Collections.Generic;
6 years ago
namespace MediaBrowser.Controller.Providers
{
public class SongInfo : ItemLookupInfo
{
public SongInfo()
{
6 years ago
Artists = Array.Empty<string>();
AlbumArtists = Array.Empty<string>();
6 years ago
}
public IReadOnlyList<string> AlbumArtists { get; set; }
public string Album { get; set; }
public IReadOnlyList<string> Artists { get; set; }
6 years ago
}
6 years ago
}