Skip to content

Commit

Permalink
Resolved issue #10
Browse files Browse the repository at this point in the history
Sisow now doesn't return an invalid sha1 warning anymore.
  • Loading branch information
robinvalk authored and barryvdh committed Mar 28, 2018
1 parent dc65115 commit 198080f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Message/CompletePurchaseRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ class CompletePurchaseRequest extends PurchaseRequest
protected function generateSignature()
{
return sha1(
$this->getTransactionReference() . $this->getMerchantId() . $this->getMerchantKey()
$this->getTransactionReference() . $this->getShopId() .
$this->getMerchantId() . $this->getMerchantKey()
);
}

Expand Down

0 comments on commit 198080f

Please sign in to comment.