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

Fix inverted SkipWhile

pull/4936/head
crobibero 4 years ago
parent d1da1aa407
commit a15e126ef8

@ -267,7 +267,7 @@ namespace Jellyfin.Api.Controllers
if (startItemId.HasValue)
{
episodes = episodes
.SkipWhile(i => startItemId.Value.Equals(i.Id))
.SkipWhile(i => !startItemId.Value.Equals(i.Id))
.ToList();
}

Loading…
Cancel
Save