diff options
author | Fire Demon <firedemon@creature.cafe> | 2020-08-01 15:30:47 -0500 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-08-30 05:45:16 -0500 |
commit | f621f3d1e8336c14ed9a5dfe1e1030634732a41e (patch) | |
tree | 4f836eda13de35ec2885e6024135e43d127b5767 | |
parent | 39c6086d5b347d11214e5c238948a7221b8a8f9e (diff) |
[Bug, Command Tags] Include cc in visibilities list
-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 77cbf3312..a4b8490f7 100644 --- a/app/lib/command_tag/processor.rb +++ b/app/lib/command_tag/processor.rb @@ -261,7 +261,7 @@ class CommandTag::Processor arg.strip end - %w(public unlisted private limited direct).include?(arg) ? arg : nil + %w(public unlisted private limited direct cc).include?(arg) ? arg : nil end def read_falsy_from(arg) |