Skip to content

Commit

Permalink
Merge pull request #6 from signifyd/4.5.4
Browse files Browse the repository at this point in the history
4.5.4: Fix for PENDING guarantee disposition in cron job
  • Loading branch information
sig-chrismorris528 authored Nov 21, 2019
2 parents c4ac200 + 4b9138b commit 50630ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ private function updateGuarantee($case)
$this->_request['guaranteeDisposition'] == 'N/A' &&
$case->getMagentoStatus() == self::IN_REVIEW_STATUS) {
$case->setMagentoStatus(self::COMPLETED_STATUS);
} else {
} elseif ($this->_request['guaranteeDisposition'] != 'PENDING') {
$case->setMagentoStatus(self::PROCESSING_RESPONSE_STATUS);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<config>
<modules>
<Signifyd_Connect>
<version>4.5.3</version>
<version>4.5.4</version>
</Signifyd_Connect>
</modules>
<global>
Expand Down
2 changes: 1 addition & 1 deletion www/magento/var/connect/Signifyd_Connect.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<description>Supports all versions of Magento</description>
<license>OSL</license>
<license_uri>http://opensource.org/licenses/osl-3.0.php</license_uri>
<version>4.5.3</version>
<version>4.5.4</version>
<stability>stable</stability>
<notes>Supports all versions of Magento</notes>
<authors>
Expand Down

0 comments on commit 50630ac

Please sign in to comment.