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

Merge pull request from cvium/fix_providermanager_guid

Change ItemId to Guid in ProviderManager
pull/702/head
Joshua M. Boniface 6 years ago committed by GitHub
commit c888879599

@ -1,3 +1,5 @@
using System;
namespace MediaBrowser.Controller.Providers
{
public class RemoteSearchQuery<T>
@ -5,7 +7,7 @@ namespace MediaBrowser.Controller.Providers
{
public T SearchInfo { get; set; }
public string ItemId { get; set; }
public Guid ItemId { get; set; }
/// <summary>
/// If set will only search within the given provider

Loading…
Cancel
Save