We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d01a7fd + e146a10 commit f2be48cCopy full SHA for f2be48c
includes/classes/AmazonCore.php
@@ -611,7 +611,7 @@ protected function sendRequest($url,$param){
611
$this->log("Making request to Amazon: ".$this->options['Action']);
612
$response = $this->fetchURL($url,$param);
613
614
- while ($response['code'] == '503' && $this->throttleStop==false){
+ while (isset($response['code']) && $response['code'] == '503' && $this->throttleStop==false){
615
$this->sleep();
616
617
}
0 commit comments