CC-2129 : Retry automatic upload to Soundcloud if Internet connection problem

This commit is contained in:
Naomi 2011-03-30 13:27:21 -04:00
parent 60141e0e01
commit 3805f8dfda
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ class ApiController extends Zend_Controller_Action
}
catch (Services_Soundcloud_Invalid_Http_Response_Code_Exception $e) {
$code = $e->getHttpCode();
if($code != 0) {
if($code != 0 || $code != 100) {
break;
}
}