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/6e1ba4e3cc88868304bf8c08baefb70b79c8838d/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs

21 lines
427 B

using System.Collections.Generic;
11 years ago
namespace MediaBrowser.Model.Playlists
{
11 years ago
public class PlaylistCreationRequest
{
11 years ago
public string Name { get; set; }
public List<string> ItemIdList { get; set; }
public string MediaType { get; set; }
public string UserId { get; set; }
11 years ago
public PlaylistCreationRequest()
{
ItemIdList = new List<string>();
}
11 years ago
}
}