From: Eugen Rochko Date: Thu, 24 Mar 2016 12:25:33 +0000 (+0100) Subject: Do not try to send notification e-mails for reblogs if the reblog is not of a X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=97d5aba1ecdd27725e345c34fbadb763aa7155e8;p=mastodon.git Do not try to send notification e-mails for reblogs if the reblog is not of a local account --- diff --git a/app/services/process_feed_service.rb b/app/services/process_feed_service.rb index db69dfc6a..14ef83204 100644 --- a/app/services/process_feed_service.rb +++ b/app/services/process_feed_service.rb @@ -76,7 +76,7 @@ class ProcessFeedService < BaseService if !status.reblog.nil? status.save! - NotificationMailer.reblog(status.reblog, status.account).deliver_later + NotificationMailer.reblog(status.reblog, status.account).deliver_later if status.reblog.local? end end