Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/226abde3f72ccfc768766ce2ff295cb0972b6426
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
4 deletions
@ -143,7 +143,7 @@ namespace Jellyfin.Api.Controllers
[HttpGet("Items")]
[ProducesResponseType(StatusCodes.Status200OK)]
public ActionResult < QueryResult < BaseItemDto > > GetItems (
[FromQuery] Guid ? userId ,
[FromQuery] Guid userId ,
[FromQuery] string? maxOfficialRating ,
[FromQuery] bool? hasThemeSong ,
[FromQuery] bool? hasThemeVideo ,
@ -224,8 +224,8 @@ namespace Jellyfin.Api.Controllers
[FromQuery] bool enableTotalRecordCount = true ,
[FromQuery] bool? enableImages = true )
{
var user = userId . HasValue & & ! userId . Equals ( Guid . Empty )
? _userManager . GetUserById ( userId .Value )
var user = ! userId . Equals ( Guid . Empty )
? _userManager . GetUserById ( userId )
: null ;
var dtoOptions = new DtoOptions { Fields = fields }
. AddClientFields ( Request )
@ -114,7 +114,7 @@ namespace Jellyfin.Api.Controllers
[HttpGet]
[ProducesResponseType(StatusCodes.Status200OK)]
public ActionResult < QueryResult < BaseItemDto > > GetTrailers (
[FromQuery] Guid ? userId ,
[FromQuery] Guid userId ,
[FromQuery] string? maxOfficialRating ,
[FromQuery] bool? hasThemeSong ,
[FromQuery] bool? hasThemeVideo ,