Skip to content

Commit

Permalink
Fix NPE in SIS Persons search script
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Sep 3, 2019
1 parent e57c21b commit 63dfda5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ switch ( objectClass ) {

log.info("Building where clause, query {0}, uidcolumn {1}, nameColumn {2}", query, uidColumn, nameColumn)

String left = query.get("left")
String left = query?.get("left")
if (left != null) {
if (Uid.NAME.equals(left)) {
left = uidColumn
Expand Down

0 comments on commit 63dfda5

Please sign in to comment.