From ec4eb6c3a052c89a952aa73f159452bef5c9b389 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 28 Nov 2017 09:21:32 -0500 Subject: [PATCH] update error message --- src/Api/Controllers/CiphersController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Api/Controllers/CiphersController.cs b/src/Api/Controllers/CiphersController.cs index ec216ae6c3..a0d8c267ee 100644 --- a/src/Api/Controllers/CiphersController.cs +++ b/src/Api/Controllers/CiphersController.cs @@ -350,7 +350,8 @@ namespace Bit.Api.Controllers { if(!_globalSettings.SelfHosted && model.Ids.Count() > 500) { - throw new BadRequestException("You can only delete up to 500 items at a time."); + throw new BadRequestException("You can only delete up to 500 items at a time. " + + "Consider using the \"Purge Vault\" option instead."); } var userId = _userService.GetProperUserId(User).Value;