Deploy: 2026-05-23 01:45:24

This commit is contained in:
Hamza-Ayed
2026-05-23 01:45:24 +03:00
parent f684b58906
commit 154c6317b0
3 changed files with 2 additions and 484 deletions

View File

@@ -31,8 +31,8 @@ class OTPController extends BaseController
return;
}
// Clean phone number (remove non-digits except +)
$phone = preg_replace('/[^\d+]/', '', $phone);
// Clean phone number (remove non-digits including +)
$phone = preg_replace('/\D/', '', $phone);
// 1. Resolve WhatsApp Session
$session = null;