From 73738b7a1866084fbdce57cdb0dfc590b90ca97a Mon Sep 17 00:00:00 2001 From: Ramon Gutierrez Date: Thu, 10 Aug 2023 12:49:06 +0800 Subject: [PATCH] Fix checking of test app store numbers #746 --- src/Controller/CustomerAppAPI/AuthController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/CustomerAppAPI/AuthController.php b/src/Controller/CustomerAppAPI/AuthController.php index 128de8a8..92613f13 100644 --- a/src/Controller/CustomerAppAPI/AuthController.php +++ b/src/Controller/CustomerAppAPI/AuthController.php @@ -85,7 +85,7 @@ class AuthController extends ApiController $otp_mode = $_ENV['OTP_MODE']; // check for hardcoded phone number for app store testing - if ($phone_number == '639221111111') { + if ($phone_number == '9991112233' || $phone_number == '9221111111') { $code = '123456'; $this->session->setConfirmCode($code) ->setPhoneNumber($phone_number);