Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/23e6c918a22c85751cc0907cd0074ee3f3445664?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
6 deletions
@ -10,7 +10,6 @@ using System.Linq;
using System.Net ;
using System.Net ;
using System.Net.Http ;
using System.Net.Http ;
using System.Net.Http.Headers ;
using System.Net.Http.Headers ;
using System.Net.Http.Json ;
using System.Net.Mime ;
using System.Net.Mime ;
using System.Text ;
using System.Text ;
using System.Text.Json ;
using System.Text.Json ;
@ -803,11 +802,10 @@ namespace Emby.Server.Implementations.LiveTv.Listings
{
{
var channelNumber = GetChannelNumber ( channel ) ;
var channelNumber = GetChannelNumber ( channel ) ;
var station = allStations . FirstOrDefault ( item = > string . Equals ( item . StationId , channel . StationId , StringComparison . OrdinalIgnoreCase ) )
var stationIndex = allStations . FindIndex ( item = > string . Equals ( item . StationId , channel . StationId , StringComparison . OrdinalIgnoreCase ) ) ;
? ? new StationDto
var station = stationIndex = = - 1
{
? new StationDto { StationId = channel . StationId }
StationId = channel . StationId
: allStations [ stationIndex ] ;
} ;
var channelInfo = new ChannelInfo
var channelInfo = new ChannelInfo
{
{