mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 23:52:50 -05:00
Changed query for device to include userId
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