Return empty response instead of not found

This commit is contained in:
Shadowghost 2024-09-18 16:04:29 +02:00
parent 7a2427bf07
commit 0a982e2bfd

View file

@ -64,11 +64,6 @@ public class SessionController : BaseJellyfinApiController
activeWithinSeconds,
controllableUserToCheck);
if (result.Count == 0)
{
return NotFound();
}
return Ok(result);
}