mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 09:14:45 +03:00
Fix nullref
This commit is contained in:
@@ -928,7 +928,7 @@ namespace Jellyfin.Api.Controllers
|
|||||||
[FromRoute] int? imageIndex = null)
|
[FromRoute] int? imageIndex = null)
|
||||||
{
|
{
|
||||||
var user = _userManager.GetUserById(userId);
|
var user = _userManager.GetUserById(userId);
|
||||||
if (user == null)
|
if (user?.ProfileImage == null)
|
||||||
{
|
{
|
||||||
return NotFound();
|
return NotFound();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user