Verified Commit 9654ae51 authored by Lukas Wiest's avatar Lukas Wiest 🚂
Browse files

fix(systems/github): Filter: add missing post filter for ticket ID filtering

parent 4f845899
......@@ -233,6 +233,11 @@ public class GithubFilter extends Filter<GithubTicket, GithubFilter>
ticketStream = ticketStream.filter(t -> t.body.matches((String) v));
}
else if (f.equals(FilterNames.IDS.name()))
{
ticketStream = ticketStream.filter(t -> ((Set<String>) v).contains(String.valueOf(t.number)));
}
else if (f.equals(FilterNames.TITLE_CONTAINS.name()))
{
ticketStream = ticketStream.filter(t -> t.title
......
Markdown is supported
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