Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/9cb37ae9c217146d94949a31df86ec3c85687ad8 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Update Jellyfin.Api/Controllers/SessionController.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
pull/4173/head
BaronGreenback 5 years ago committed by GitHub
parent 701d54260d
commit 9cb37ae9c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -166,7 +166,7 @@ namespace Jellyfin.Api.Controllers
{
var playRequest = new PlayRequest
{
ItemIds = itemIds.Split(',').Select(p => Guid.Parse(p)).ToArray(),
ItemIds = RequestHelpers.GetGuids(itemIds),
StartPositionTicks = startPositionTicks,
PlayCommand = playCommand
};

Loading…
Cancel
Save