Skip to content

Commit

Permalink
Fixed NPE when the Nuclei JSON schema cannot be loaded #26
Browse files Browse the repository at this point in the history
  • Loading branch information
forgedhallpass committed Jun 8, 2022
1 parent ccf1944 commit e75e77a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/burp/BurpExtender.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class BurpExtender implements burp.IBurpExtender {

private static final String GENERATOR_TAB_NAME = "Generator";

private Map<String, String> yamlFieldDescriptionMap;
private Map<String, String> yamlFieldDescriptionMap = new HashMap<>();
private JTabbedPane nucleiTabbedPane;

@Override
Expand Down

0 comments on commit e75e77a

Please sign in to comment.