mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
Changed query for device to include userId
(cherry picked from commit 5e3f6db64b
)
This commit is contained in:
@ -130,7 +130,7 @@ public class AuthRequestsController : Controller
|
|||||||
throw new DuplicateAuthRequestException();
|
throw new DuplicateAuthRequestException();
|
||||||
}
|
}
|
||||||
|
|
||||||
var device = await _deviceRepository.GetByIdentifierAsync(model.DeviceIdentifier);
|
var device = await _deviceRepository.GetByIdentifierAsync(model.DeviceIdentifier, userId);
|
||||||
if (device == null)
|
if (device == null)
|
||||||
{
|
{
|
||||||
throw new BadRequestException("Invalid device.");
|
throw new BadRequestException("Invalid device.");
|
||||||
|
Reference in New Issue
Block a user