From: Eugen Rochko Date: Mon, 21 Nov 2016 08:56:01 +0000 (+0100) Subject: Call NotifyService about remote reblogs X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=29b12f9e0abb5031b368f2815d6408705e0498c6;p=mastodon.git Call NotifyService about remote reblogs --- diff --git a/app/services/process_feed_service.rb b/app/services/process_feed_service.rb index 4b2fe3799..8daafd444 100644 --- a/app/services/process_feed_service.rb +++ b/app/services/process_feed_service.rb @@ -60,6 +60,8 @@ class ProcessFeedService < BaseService end status.save! + + NotifyService.new.call(status.reblog.account, status) if status.reblog? Rails.logger.debug "Queuing remote status #{status.id} (#{id}) for distribution" DistributionWorker.perform_async(status.id) status