Skip to content

Commit

Permalink
Get parent title ID, not object
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobSanford committed Aug 19, 2024
1 parent 125c544 commit 2f04ba2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function getIssueTitleId($issue_id) {
if ($issue == NULL) {
$title_id = NULL;
} else {
$title_id = $issue->getParentTitle();
$title_id = $issue->getParentTitleId();
}

return new JsonResponse(
Expand Down

0 comments on commit 2f04ba2

Please sign in to comment.