Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
Fix marketplace ID caps
Browse files Browse the repository at this point in the history
  • Loading branch information
keithbrink committed May 17, 2018
1 parent dd8d625 commit fa3b50b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AmazonCore.php
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ public function validateAndSetConfig($config)
$this->log('Merchant ID is missing!', 'Warning');
}
if (array_key_exists('marketplaceId', $config) && $config['marketplaceId']) {
$this->options['marketplaceId'] = $config['marketplaceId'];
$this->options['MarketplaceId'] = $config['marketplaceId'];
} else {
$valid = false;
$this->log('Marketplace ID is missing!', 'Warning');
Expand Down

0 comments on commit fa3b50b

Please sign in to comment.