Skip to content

Commit

Permalink
Merge pull request #1004 from NBISweden/1002-fix-panic
Browse files Browse the repository at this point in the history
fix: Fix boo boo
  • Loading branch information
kusalananda authored Oct 17, 2024
2 parents ac128eb + 91cdf46 commit 0c04bc3
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 0c04bc3

Please sign in to comment.