From e169766efd91bd493db8b92b62688257a49be0b3 Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Tue, 22 Oct 2019 07:07:03 +0000 Subject: [PATCH] Modify the error message if delivery is not in the coverage areas. #271 --- src/Controller/APIController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/APIController.php b/src/Controller/APIController.php index aefb8792..225f81c8 100644 --- a/src/Controller/APIController.php +++ b/src/Controller/APIController.php @@ -853,7 +853,7 @@ class APIController extends Controller { // TODO: put geofence error message in config file somewhere $res->setError(true) - ->setErrorMessage('Oops! Our service is limited to Metro Manila, Baguio, and Laguna only. We will update you as soon as we are able to cover your area'); + ->setErrorMessage('Oops! Our service is limited to some areas in Laguna and Baguio, and Metro Manila only. We will update you as soon as we are able to cover your area'); return $res->getReturnResponse(); } }