about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--app/lib/command_tag/command/footer_tools.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/command_tag/command/footer_tools.rb b/app/lib/command_tag/command/footer_tools.rb
index f2ee39ffa..5ef39fe4a 100644
--- a/app/lib/command_tag/command/footer_tools.rb
+++ b/app/lib/command_tag/command/footer_tools.rb
@@ -37,7 +37,7 @@ module CommandTag::Command::FooterTools
   def handle_i_before_save(args)
     return if args.blank?
 
-    handle_footer_before_save(args.unshift) if %w(am are).include?(normalize(args[0]))
+    handle_footer_before_save(args[1..-1]) if %w(am are).include?(normalize(args[0]))
   end
 
   alias handle_we_before_save           handle_i_before_save