We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I have recently had an issue with Tropo API.
This fails:
[{"call":{"to":"tel:+13233204009","from":"13233299421","timeout":"40"}}
While this works:
[{"call":{"to":"tel:+13233204009","from":"13233299421","timeout":45}}
It took me a while to track this down. It's easy to miss this kind of issues in a language such as PHP.
So I suggest you typecast this in Tropo.
tropo.class.php line 845
$this->_timeout = $timeout;
to
$this->_timeout = (float)$timeout;
The text was updated successfully, but these errors were encountered:
kevinbond
No branches or pull requests
Hi,
I have recently had an issue with Tropo API.
This fails:
While this works:
It took me a while to track this down. It's easy to miss this kind of issues in a language such as PHP.
So I suggest you typecast this in Tropo.
tropo.class.php line 845
to
The text was updated successfully, but these errors were encountered: