diff options
-rw-r--r-- | app/lib/command_tag/processor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/command_tag/processor.rb b/app/lib/command_tag/processor.rb index 118affee4..66a507f23 100644 --- a/app/lib/command_tag/processor.rb +++ b/app/lib/command_tag/processor.rb @@ -70,7 +70,7 @@ class CommandTag::Processor @statements.each do |statement| name = "handle_#{statement[0]}_#{suffix}" is_run_once = suffix.start_with?('once_') - public_send(name, *statement[1..-1]) if respond_to?(name) && !(is_run_once && @run_once.include?(name)) + public_send(name, statement[1..-1]) if respond_to?(name) && !(is_run_once && @run_once.include?(name)) @run_once << name if is_run_once end end |