about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--app/lib/command_tag/processor.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/lib/command_tag/processor.rb b/app/lib/command_tag/processor.rb
index 34de03e4e..0d72c7a07 100644
--- a/app/lib/command_tag/processor.rb
+++ b/app/lib/command_tag/processor.rb
@@ -256,11 +256,11 @@ class CommandTag::Processor
   end
 
   def read_falsy_from(arg)
-    %w(false no off disable).include?(arg)
+    %w(f n false no off disable).include?(arg)
   end
 
   def read_truthy_from(arg)
-    %w(true yes on enable).include?(arg)
+    %w(t y true yes on enable).include?(arg)
   end
 
   def read_boolean_from(arg)