mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-11 12:46:20 +00:00
add null checks to get theme media
This commit is contained in:
@@ -839,6 +839,7 @@ namespace MediaBrowser.Api.Library
|
||||
var dtoOptions = GetDtoOptions(request);
|
||||
|
||||
var dtos = GetThemeSongIds(item).Select(_libraryManager.GetItemById)
|
||||
.Where(i => i != null)
|
||||
.OrderBy(i => i.SortName)
|
||||
.Select(i => _dtoService.GetBaseItemDto(i, dtoOptions, user, item));
|
||||
|
||||
@@ -882,6 +883,7 @@ namespace MediaBrowser.Api.Library
|
||||
var dtoOptions = GetDtoOptions(request);
|
||||
|
||||
var dtos = GetThemeVideoIds(item).Select(_libraryManager.GetItemById)
|
||||
.Where(i => i != null)
|
||||
.OrderBy(i => i.SortName)
|
||||
.Select(i => _dtoService.GetBaseItemDto(i, dtoOptions, user, item));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user