errors: fix string

Signed-off-by: Varun Patil <varunpatil@ucla.edu>
pull/504/head
Varun Patil 2023-03-18 20:32:27 -07:00
parent 47e2d9197f
commit d1720e8006
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class Errors
public static function NotEnabled(string $app): Http\Response
{
return new DataResponse([
'message' => "{$app} app not enabled or not v3+.",
'message' => "{$app} app not enabled or not the required version.",
], Http::STATUS_PRECONDITION_FAILED);
}