Skip to content
Snippets Groups Projects
Commit 97d5aba1 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Do not try to send notification e-mails for reblogs if the reblog is not of a

local account
parent 0f5bbb99
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment