Skip to content

Commit 479d42f

Browse files
committed
fix for getting status
1 parent addc986 commit 479d42f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ PHP library for interacting with the Qencode API.
1313
```json
1414
{
1515
"require": {
16-
"qencode/api-client": "1.11.*"
16+
"qencode/api-client": "1.12.*"
1717
}
1818
}
1919
```

src/Classes/TranscodingTask.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public function getStatus() {
168168
$params = array('task_tokens[]' => $this->taskToken);
169169

170170
try {
171-
$response = $this->api->post($this->statusUrl.'/test', $params);
171+
$response = $this->api->post($this->statusUrl, $params);
172172
}
173173
// If the post request fails, fallback to the default URL
174174
catch(QencodeException $qe) {

0 commit comments

Comments
 (0)