Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/6cc1bd544add65fdf7758c04655586c206675193?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
2 deletions
@ -12,6 +12,7 @@ using MediaBrowser.Model.Services;
using Microsoft.AspNetCore.Http ;
using Microsoft.AspNetCore.Http ;
using Microsoft.AspNetCore.Http.Extensions ;
using Microsoft.AspNetCore.Http.Extensions ;
using Microsoft.Extensions.Logging ;
using Microsoft.Extensions.Logging ;
using Microsoft.Net.Http.Headers ;
namespace Emby.Server.Implementations.SocketSharp
namespace Emby.Server.Implementations.SocketSharp
{
{
@ -39,7 +40,7 @@ using Microsoft.Extensions.Logging;
{
{
var url = request . GetDisplayUrl ( ) ;
var url = request . GetDisplayUrl ( ) ;
logger . LogInformation ( " {0} {1}. UserAgent: {2}", "WS" , url , request . Headers [ "User-Agent" ] . ToString ( ) ) ;
logger . LogInformation ( " WS {Url}. UserAgent: {UserAgent}", url , request . Headers [ HeaderNames . UserAgent ] . ToString ( ) ) ;
}
}
public async Task ProcessWebSocketRequest ( HttpContext ctx )
public async Task ProcessWebSocketRequest ( HttpContext ctx )