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
af4a85c0
Commit
af4a85c0
authored
May 13, 2016
by
Sander van Harmelen
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #49 from matm/master
labels: marshal error fix
parents
ca13d83a
0b579371
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
issues.go
issues.go
+2
-1
No files found.
issues.go
View file @
af4a85c0
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
package
gitlab
package
gitlab
import
(
import
(
"encoding/json"
"fmt"
"fmt"
"log"
"log"
"net/url"
"net/url"
...
@@ -81,7 +82,7 @@ type Labels []string
...
@@ -81,7 +82,7 @@ type Labels []string
// MarshalJSON implements the json.Marshaler interface.
// MarshalJSON implements the json.Marshaler interface.
func
(
l
*
Labels
)
MarshalJSON
()
([]
byte
,
error
)
{
func
(
l
*
Labels
)
MarshalJSON
()
([]
byte
,
error
)
{
return
[]
byte
(
strings
.
Join
(
*
l
,
","
)),
nil
return
json
.
Marshal
(
strings
.
Join
(
*
l
,
","
))
}
}
// ListIssuesOptions represents the available ListIssues() options.
// ListIssuesOptions represents the available ListIssues() options.
...
...
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