Skip to content

Commit

Permalink
Fix context.cancelled in old-style events
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Jul 25, 2015
1 parent 1ce817f commit 1008c35
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -263,7 +263,7 @@ public void run(ScriptContainer script, String event) throws CloneNotSupportedEx
if (oldStyleContext.size() > 0) {
OldEventManager.OldEventContextSource oecs = new OldEventManager.OldEventContextSource();
oecs.contexts = oldStyleContext;
oecs.contexts.put("cancelled", new Element("cancelled"));
oecs.contexts.put("cancelled", new Element(cancelled));
queue.setContextSource(oecs);
}
else {
Expand Down

0 comments on commit 1008c35

Please sign in to comment.