Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/ff6325efc5ae478c68dc140c5adbae089a6f7f4b/MediaBrowser.Controller/Playback/IIntroProvider.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Playback/IIntroProvider.cs

20 lines
538 B

using MediaBrowser.Controller.Entities;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Playback
{
/// <summary>
/// Class BaseIntroProvider
/// </summary>
public interface IIntroProvider
{
/// <summary>
/// Gets the intros.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="user">The user.</param>
/// <returns>IEnumerable{System.String}.</returns>
IEnumerable<string> GetIntros(BaseItem item, User user);
}
}