From 1442bf94aeeed916a9dc00257b791d7113a858e5 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Tue, 13 Aug 2024 17:41:27 +0200 Subject: [PATCH] Fix send rotation error message (#4624) --- src/Api/Tools/Validators/SendRotationValidator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api/Tools/Validators/SendRotationValidator.cs b/src/Api/Tools/Validators/SendRotationValidator.cs index f177d6b7f..74b36832f 100644 --- a/src/Api/Tools/Validators/SendRotationValidator.cs +++ b/src/Api/Tools/Validators/SendRotationValidator.cs @@ -42,7 +42,7 @@ public class SendRotationValidator : IRotationValidator c.Id == existing.Id); 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));