Commit e8bdd946 authored by Rico Van de Vin's avatar Rico Van de Vin
Browse files

Issue #3262450 by Marty2081: PHP Notice when Mollie account already contains (older) payments

parent 888192cd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -45,8 +45,8 @@ class PaymentStorage extends TransactionStorageBase {
        'description' => $payment->description,
        'mode' => $payment->mode,
        'method' => $payment->method,
        'context' => $metadata['context'],
        'context_id' => $metadata['context_id'],
        'context' => $metadata['context'] ?? '',
        'context_id' => $metadata['context_id'] ?? '',
      ];
      if (isset($metadata['issuer'])) {
        $values['issuer'] = $metadata['issuer'];