From b1e3ecd78f0c384c630b5a66296fad65df986e2f Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Sun, 17 Nov 2019 22:07:30 -0600 Subject: In ProcessMentionsService, `skip_notify` should be a keyword argument, not positional. --- app/services/process_mentions_service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app') diff --git a/app/services/process_mentions_service.rb b/app/services/process_mentions_service.rb index cabd1d0bc..49647935f 100644 --- a/app/services/process_mentions_service.rb +++ b/app/services/process_mentions_service.rb @@ -4,7 +4,7 @@ class ProcessMentionsService < BaseService # Scan status for mentions and fetch remote mentioned users, create # local mention pointers # @param [Status] status - def call(status, skip_notify = false) + def call(status, skip_notify: false) return unless status.local? && !status.draft? @status = status -- cgit