Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/e13ccfe8547f7f3fbe01dc9ae378bf693f27c4bc
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
6 additions and
4 deletions
@ -19,6 +19,7 @@ using Jellyfin.Data.Enums;
using Jellyfin.Data.Events ;
using Jellyfin.Extensions ;
using Jellyfin.LiveTv.Configuration ;
using Jellyfin.LiveTv.Timers ;
using MediaBrowser.Common.Configuration ;
using MediaBrowser.Common.Extensions ;
using MediaBrowser.Controller.Configuration ;
@ -1,7 +1,7 @@
using Jellyfin.LiveTv.Channels ;
using Jellyfin.LiveTv.EmbyTV ;
using Jellyfin.LiveTv.Guide ;
using Jellyfin.LiveTv.Listings ;
using Jellyfin.LiveTv.Timers ;
using Jellyfin.LiveTv.TunerHosts ;
using Jellyfin.LiveTv.TunerHosts.HdHomerun ;
using MediaBrowser.Controller.Channels ;
@ -9,7 +9,7 @@ using System.Text.Json;
using Jellyfin.Extensions.Json ;
using Microsoft.Extensions.Logging ;
namespace Jellyfin.LiveTv. EmbyTV
namespace Jellyfin.LiveTv. Timers
{
public class ItemDataProvider < T >
where T : class
@ -6,7 +6,7 @@ using MediaBrowser.Common.Configuration;
using MediaBrowser.Controller.LiveTv ;
using Microsoft.Extensions.Logging ;
namespace Jellyfin.LiveTv. EmbyTV
namespace Jellyfin.LiveTv. Timers
{
public class SeriesTimerManager : ItemDataProvider < SeriesTimerInfo >
{
@ -7,12 +7,13 @@ using System.IO;
using System.Linq ;
using System.Threading ;
using Jellyfin.Data.Events ;
using Jellyfin.LiveTv.EmbyTV ;
using MediaBrowser.Common.Configuration ;
using MediaBrowser.Controller.LiveTv ;
using MediaBrowser.Model.LiveTv ;
using Microsoft.Extensions.Logging ;
namespace Jellyfin.LiveTv. EmbyTV
namespace Jellyfin.LiveTv. Timers
{
public class TimerManager : ItemDataProvider < TimerInfo >
{