Skip to content

Commit

Permalink
fix: Fix boo boo
Browse files Browse the repository at this point in the history
  • Loading branch information
kusalananda committed Oct 17, 2024
1 parent 475ab7d commit 91cdf46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/api/getPriorityEntriesHandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func getPriorityEntriesHandler(c *fiber.Ctx) error {
func getProjectIdForIssue(c *fiber.Ctx, issueId int) (int, error) {
c.Response().Reset()
c.Request().URI().SetQueryString(
fmt.Sprintf("issue_id=%d,status_id=*", issueId))
fmt.Sprintf("issue_id=%d&status_id=*", issueId))

if err := getIssuesHandler(c); err != nil {
} else if c.Response().StatusCode() != fiber.StatusOK {
Expand Down

0 comments on commit 91cdf46

Please sign in to comment.