Skip to content

Commit

Permalink
#829 Fix null pointer exception
Browse files Browse the repository at this point in the history
  • Loading branch information
koda-masaru committed Nov 20, 2017
1 parent fdbac9b commit 5f68884
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,9 @@ public Boundary list() throws Exception {
String groupNames = getParam("groupNames");
String creators = getParam("creators");
String[] templates = getParam("template", String[].class);
if (templates == null) {
templates = new String[0];
}

boolean hiddenFilter = false;
if ("quickFilter".equals(getParam("from"))) {
Expand Down

0 comments on commit 5f68884

Please sign in to comment.