Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/4269190ca310a10d97f24e73cf59423b534fe5a4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
8 deletions
@ -80,22 +80,22 @@ namespace Emby.Server.Implementations.LiveTv
if ( width > = 3000 )
{
videoStream . BitRate = 25 000000;
videoStream . BitRate = 30 000000;
}
else if ( width > = 1900 )
{
videoStream . BitRate = 15 000000;
videoStream . BitRate = 20 000000;
}
else if ( width > = 1200 )
{
videoStream . BitRate = 4 000000;
videoStream . BitRate = 8 000000;
}
else if ( width > = 700 )
{
videoStream . BitRate = 15 00000;
videoStream . BitRate = 20 00000;
}
}
@ -185,22 +185,22 @@ namespace Emby.Server.Implementations.LiveTv
if ( width > = 3000 )
{
videoStream . BitRate = 25 000000;
videoStream . BitRate = 30 000000;
}
else if ( width > = 1900 )
{
videoStream . BitRate = 15 000000;
videoStream . BitRate = 20 000000;
}
else if ( width > = 1200 )
{
videoStream . BitRate = 4 000000;
videoStream . BitRate = 8 000000;
}
else if ( width > = 700 )
{
videoStream . BitRate = 15 00000;
videoStream . BitRate = 20 00000;
}
}
}