mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-03 13:44:22 -04:00
Fix nullref
This commit is contained in:
parent
d2cef78db3
commit
c01042b355
@ -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();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user