Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/8e05b226459eb0c513e227002f03068ca1e8dfc9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
13 additions and
1 deletions
@ -6,6 +6,7 @@ using System.Net.Http;
using System.Threading.Tasks ;
using Jellyfin.Api.Constants ;
using Jellyfin.Api.Helpers ;
using Jellyfin.Api.Models.VideoDtos ;
using MediaBrowser.Common.Net ;
using MediaBrowser.Controller.Configuration ;
using MediaBrowser.Controller.Devices ;
@ -151,7 +152,18 @@ namespace Jellyfin.Api.Controllers
_authorizationContext . GetAuthorizationInfo ( Request ) . DeviceId = deviceId ;
var mediaInfoController = new MediaInfoController ( _mediaSourceManager , _deviceManager , _libraryManager , _networkManager , _mediaEncoder , _userManager , _authorizationContext , _loggerFactory . CreateLogger < MediaInfoController > ( ) , _serverConfigurationManager ) ;
var playbackInfoResult = await mediaInfoController . GetPlaybackInfo ( itemId , userId ) . ConfigureAwait ( false ) ;
var playbackInfoResult = await mediaInfoController . GetPostedPlaybackInfo (
itemId ,
userId ,
maxStreamingBitrate ,
startTimeTicks ,
null ,
null ,
maxAudioChannels ,
mediaSourceId ,
null ,
new DeviceProfileDto { DeviceProfile = deviceProfile } )
. ConfigureAwait ( false ) ;
var mediaSource = playbackInfoResult . Value . MediaSources [ 0 ] ;
if ( mediaSource . SupportsDirectPlay & & mediaSource . Protocol = = MediaProtocol . Http )