mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
Merge pull request #6469 from turbo124/v5-develop
Fix typo in Apple Pay
This commit is contained in:
commit
07d23c406b
@ -48,7 +48,7 @@ class ApplePay
|
|||||||
|
|
||||||
$data['intent'] = \Stripe\PaymentIntent::create([
|
$data['intent'] = \Stripe\PaymentIntent::create([
|
||||||
'amount' => $data['stripe_amount'],
|
'amount' => $data['stripe_amount'],
|
||||||
'currency' => $this->stripe_driver->client->getCurrencyCode();,
|
'currency' => $this->stripe_driver->client->getCurrencyCode(),
|
||||||
], $this->stripe_driver->stripe_connect_auth);
|
], $this->stripe_driver->stripe_connect_auth);
|
||||||
|
|
||||||
$this->stripe_driver->payment_hash->data = array_merge((array) $this->stripe_driver->payment_hash->data, ['stripe_amount' => $data['stripe_amount']]);
|
$this->stripe_driver->payment_hash->data = array_merge((array) $this->stripe_driver->payment_hash->data, ['stripe_amount' => $data['stripe_amount']]);
|
||||||
|
Loading…
Reference in New Issue
Block a user