Skip to content

Commit

Permalink
Fix missing nullcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
CrystallDEV committed May 21, 2023
1 parent eb60db1 commit a9b9629
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,9 @@ public void setDynamicFieldContainer(String fieldsString) {
}

public String getDynamicFieldContainer() {
if(dynamicFieldContainer == null){
return "";
}
return dynamicFieldContainer.toString();
}

Expand Down

0 comments on commit a9b9629

Please sign in to comment.