From 1b4203bd90efb0d5f4190f288d3d0ba3f2f51625 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Fri, 21 Aug 2020 14:18:40 -0400 Subject: [PATCH] Fix an incorrect/misleading message in lib/Service/BoardService.php Signed-off-by: Jordan Bancino --- lib/Service/BoardService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/BoardService.php b/lib/Service/BoardService.php index 868164b91..26472150a 100644 --- a/lib/Service/BoardService.php +++ b/lib/Service/BoardService.php @@ -415,7 +415,7 @@ class BoardService { } if ($title === false || $title === null) { - throw new BadRequestException('color must be provided'); + throw new BadRequestException('title must be provided'); } if ($color === false || $color === null) {