mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Fix wrong usage of ArgumentNullException.ThrowIfNull
This commit is contained in:
parent
d35a1f2b94
commit
e21f4adc16
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ namespace Jellyfin.Api.Controllers
|
|||
{
|
||||
var currentSession = await RequestHelpers.GetSession(_sessionManager, _userManager, HttpContext).ConfigureAwait(false);
|
||||
|
||||
ArgumentNullException.ThrowIfNull(command, "Request body may not be null");
|
||||
ArgumentNullException.ThrowIfNull(command);
|
||||
|
||||
command.ControllingUserId = currentSession.UserId;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue