Skip to content

Commit

Permalink
Merge pull request #963 from support-project/issue829_fix_null_pointer
Browse files Browse the repository at this point in the history
#829 Fix null pointer exception
  • Loading branch information
koda-masaru authored Nov 20, 2017
2 parents fdbac9b + 5f68884 commit fdbf8b7
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 fdbf8b7

Please sign in to comment.