Skip to content

Commit

Permalink
Fix announce when dealing with :'s
Browse files Browse the repository at this point in the history
  • Loading branch information
aufdemrand committed Oct 9, 2013
1 parent ea324af commit e5ab479
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -66,7 +66,7 @@ else if (!scriptEntry.hasObject("format")
scriptEntry.addObject("format", ScriptRegistry.getScriptContainerAs(arg.getValue(), FormatScriptContainer.class));

else if (!scriptEntry.hasObject("text"))
scriptEntry.addObject("text", arg.asElement());
scriptEntry.addObject("text", new Element(arg.raw_value));

}

Expand Down

0 comments on commit e5ab479

Please sign in to comment.