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) if (startItemId.HasValue)
{ {
episodes = episodes episodes = episodes
.SkipWhile(i => startItemId.Value.Equals(i.Id)) .SkipWhile(i => !startItemId.Value.Equals(i.Id))
.ToList(); .ToList();
} }

Loading…
Cancel
Save