Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
go-gitlab
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
go-gitlab
Commits
38647abb
Commit
38647abb
authored
May 11, 2016
by
Sander van Harmelen
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #46 from matm/master
Fixes an internal server error when no label available
parents
4f982fa2
cdf526a2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
issues.go
issues.go
+2
-0
No files found.
issues.go
View file @
38647abb
...
@@ -194,7 +194,9 @@ func (s *IssuesService) CreateIssue(
...
@@ -194,7 +194,9 @@ func (s *IssuesService) CreateIssue(
u
:=
fmt
.
Sprintf
(
"projects/%s/issues"
,
url
.
QueryEscape
(
project
))
u
:=
fmt
.
Sprintf
(
"projects/%s/issues"
,
url
.
QueryEscape
(
project
))
// This is needed to get a single, comma separated string
// This is needed to get a single, comma separated string
if
len
(
opt
.
Labels
)
>
0
{
opt
.
Labels
=
[]
string
{
strings
.
Join
(
opt
.
Labels
,
","
)}
opt
.
Labels
=
[]
string
{
strings
.
Join
(
opt
.
Labels
,
","
)}
}
req
,
err
:=
s
.
client
.
NewRequest
(
"POST"
,
u
,
opt
)
req
,
err
:=
s
.
client
.
NewRequest
(
"POST"
,
u
,
opt
)
if
err
!=
nil
{
if
err
!=
nil
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment