Skip to content

Commit

Permalink
quickfix assignment command
Browse files Browse the repository at this point in the history
  • Loading branch information
BloodEko committed May 1, 2018
1 parent a0f1f96 commit 967f604
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -65,7 +65,7 @@ public void execute(ScriptEntry scriptEntry) throws CommandExecutionException {
dScript script = scriptEntry.getdObject("script");

// Report to dB
dB.report(scriptEntry, getName(), aH.debugObj("action", scriptEntry.getObject("action")) + script.debug());
dB.report(scriptEntry, getName(), aH.debugObj("action", scriptEntry.getObject("action")) + (script != null ? script.debug() : ""));

// Perform desired action
if (scriptEntry.getObject("action").equals(Action.SET)) {
Expand Down

0 comments on commit 967f604

Please sign in to comment.