Skip to content

Commit

Permalink
Issue #16: Fix Authentication protocol EMV3DS missing error message
Browse files Browse the repository at this point in the history
  • Loading branch information
facine committed Oct 15, 2020
1 parent c3d3c3b commit 57c2365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Sermepa.php
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ private function getParameters() {
);

return array_filter($parameters, function($parameter) {
return ($parameter !== NULL && $parameter !== FALSE && $parameter !== '');
return ($parameter !== NULL && $parameter !== FALSE && $parameter !== '' && !empty($parameter) );
});
}

Expand Down

0 comments on commit 57c2365

Please sign in to comment.