We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent addc986 commit 479d42fCopy full SHA for 479d42f
README.md
@@ -13,7 +13,7 @@ PHP library for interacting with the Qencode API.
13
```json
14
{
15
"require": {
16
- "qencode/api-client": "1.11.*"
+ "qencode/api-client": "1.12.*"
17
}
18
19
```
src/Classes/TranscodingTask.php
@@ -168,7 +168,7 @@ public function getStatus() {
168
$params = array('task_tokens[]' => $this->taskToken);
169
170
try {
171
- $response = $this->api->post($this->statusUrl.'/test', $params);
+ $response = $this->api->post($this->statusUrl, $params);
172
173
// If the post request fails, fallback to the default URL
174
catch(QencodeException $qe) {
0 commit comments