mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Fix send rotation error message (#4624)
This commit is contained in:
parent
5084ccc328
commit
1442bf94ae
@ -42,7 +42,7 @@ public class SendRotationValidator : IRotationValidator<IEnumerable<SendWithIdRe
|
|||||||
var send = sends.FirstOrDefault(c => c.Id == existing.Id);
|
var send = sends.FirstOrDefault(c => c.Id == existing.Id);
|
||||||
if (send == null)
|
if (send == null)
|
||||||
{
|
{
|
||||||
throw new BadRequestException("All existing folders must be included in the rotation.");
|
throw new BadRequestException("All existing sends must be included in the rotation.");
|
||||||
}
|
}
|
||||||
|
|
||||||
result.Add(send.ToSend(existing, _sendService));
|
result.Add(send.ToSend(existing, _sendService));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user