Commit 3eeb140c authored by Greg Messner's avatar Greg Messner
Browse files

Fixed filtering by label (#250).

parent 7b6f8b32
......@@ -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)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment