From c7f3f09f0e9a5a5edfd4b5d502e50335e2d21754 Mon Sep 17 00:00:00 2001 From: Hamza-Ayed Date: Fri, 24 Apr 2026 01:16:22 +0300 Subject: [PATCH] Fix: Hardcode wallet allowed audiences to ensure compatibility --- config/intaleq.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/intaleq.php b/config/intaleq.php index 3806c59..5d8c328 100644 --- a/config/intaleq.php +++ b/config/intaleq.php @@ -61,6 +61,10 @@ return [ // Wallet Security // 'wallet_jwt_secret' => env('WALLET_JWT_SECRET'), 'wallet_hmac_secret' => env('WALLET_HMAC_SECRET'), - 'wallet_allowed_audiences' => explode(',', env('WALLET_ALLOWED_AUDIENCES', 'Tripz-Wallet')), + 'wallet_allowed_audiences' => [ + 'Tripz-Wallet', + 'TripzWallet:android', + 'TripzWallet:ios', + ], 'fp_pepper' => env('FP_PEPPER', ''), ];