1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-01-05 22:53:53 +02:00

🐛 [Return Error]: Parameter argument mismatch.

This commit is contained in:
Samyak Gaur 2021-10-20 15:19:54 +05:30
parent c8be33c431
commit 6a3ead2292

View File

@ -915,7 +915,7 @@ func (s *IssueService) GetComment(ctx context.Context, issueID string, commentID
if options != nil {
q, err := query.Values(options)
if err != nil {
return nil, nil
return nil, nil, nil
}
req.URL.RawQuery = q.Encode()
}