Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/27c57612f4737f8c7704b1ada93209c4f23cab55/NzbDrone.Core/Model/Xbmc/ActivePlayersDharmaResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Core/Model/Xbmc/ActivePlayersDharmaResult.cs

12 lines
276 B

using System.Collections.Generic;
namespace NzbDrone.Core.Model.Xbmc
{
public class ActivePlayersDharmaResult
{
public string Id { get; set; }
public string JsonRpc { get; set; }
public Dictionary<string, bool> Result { get; set; }
}
}