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.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Playlists
|
|
|
|
|
{
|
|
|
|
|
public class PlaylistCreationRequest
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<string> ItemIdList { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MediaType { get; set; }
|
|
|
|
|
|
|
|
|
|
public string UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
public PlaylistCreationRequest()
|
|
|
|
|
{
|
|
|
|
|
ItemIdList = new List<string>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|