diff options
Diffstat (limited to 'MediaBrowser.Api/UserLibrary/ItemsService.cs')
| -rw-r--r-- | MediaBrowser.Api/UserLibrary/ItemsService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/UserLibrary/ItemsService.cs b/MediaBrowser.Api/UserLibrary/ItemsService.cs index ba07571bf..25821c213 100644 --- a/MediaBrowser.Api/UserLibrary/ItemsService.cs +++ b/MediaBrowser.Api/UserLibrary/ItemsService.cs @@ -1430,7 +1430,7 @@ namespace MediaBrowser.Api.UserLibrary nextId = list[index + 1].Id; } - return list.Where(i => i.Id == previousId || i.Id == nextId); + return list.Where(i => i.Id == previousId || i.Id == nextId || i.Id == adjacentToIdGuid); } /// <summary> |
