Fix: Hardcode wallet allowed audiences to ensure compatibility

This commit is contained in:
Hamza-Ayed
2026-04-24 01:16:22 +03:00
parent 733f1b98f5
commit c7f3f09f0e

View File

@@ -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', ''),
];