Skip to content

Commit 27d379f

Browse files
authored
Fix incorrect endpoint path for JQL search (#561)
1 parent a055ce7 commit 27d379f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Issue/IssueService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ public function search(string $jql, string $nextPageToken = '', int $maxResults
548548
$data['nextPageToken'] = $nextPageToken;
549549
}
550550

551-
$ret = $this->exec('search/jql', json_encode($data), 'POST');
551+
$ret = $this->exec('/search/jql', json_encode($data), 'POST');
552552
$json = json_decode($ret);
553553

554554
$result = $this->json_mapper->map(

0 commit comments

Comments
 (0)