Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
3eeb140c
Commit
3eeb140c
authored
Sep 12, 2018
by
Greg Messner
Browse files
Fixed filtering by label (#250).
parent
7b6f8b32
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/MergeRequestFilter.java
View file @
3eeb140c
...
...
@@ -300,7 +300,7 @@ public class MergeRequestFilter {
.
withParam
(
"sort"
,
sort
)
.
withParam
(
"milestone"
,
milestone
)
.
withParam
(
"view"
,
(
simpleView
!=
null
&&
simpleView
?
"simple"
:
null
))
.
withParam
(
"labels"
,
labels
)
.
withParam
(
"labels"
,
(
labels
!=
null
?
String
.
join
(
","
,
labels
)
:
null
)
)
.
withParam
(
"created_after"
,
createdAfter
)
.
withParam
(
"created_before"
,
createdBefore
)
.
withParam
(
"updated_after"
,
updatedAfter
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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