Skip to content

Commit

Permalink
“transactionID” used in deptorReturnURL !== iDIN transactionID
Browse files Browse the repository at this point in the history
Changed to “debtorReference” to prevent any possible confusions (e.g. lookups in DB, iDIN transactionID and debtorReference are very different entries; see IdentityStatusBluemResponse).
  • Loading branch information
gavro committed May 2, 2021
1 parent 395a7b7 commit 81a2bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Requests/IdentityBluemRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function __construct(
$this->debtorReference = $debtorReference;
$this->debtorReturnURL = $debtorReturnURL;

$this->debtorReturnURL = $this->debtorReturnURL . "?transactionID={$this->debtorReference}";
$this->debtorReturnURL = $this->debtorReturnURL . "?debtorReference={$this->debtorReference}";

// @todo: make this a configurable setting
$this->minAge = 18;
Expand Down

0 comments on commit 81a2bc8

Please sign in to comment.