about summary refs log tree commit diff
path: root/app/services/process_command_tags_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/process_command_tags_service.rb')
-rw-r--r--app/services/process_command_tags_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/process_command_tags_service.rb b/app/services/process_command_tags_service.rb
index 2d8180673..6b6d46662 100644
--- a/app/services/process_command_tags_service.rb
+++ b/app/services/process_command_tags_service.rb
@@ -3,7 +3,7 @@
 class ProcessCommandTagsService < BaseService
   def call(account, status, raise_if_no_output: true)
     CommandTag::Processor.new(account, status).process!
-    raise Mastodon::LengthValidationError, 'Processed command tags yielded no output.' if raise_if_no_output && status.destroyed?
+    raise Mastodon::LengthValidationError, 'Text commands were processed successfully.' if raise_if_no_output && status.destroyed?
 
     status
   end