Browse Source

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

local account
closed-social-glitch-2
Eugen Rochko 8 years ago
parent
commit
97d5aba1ec
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/process_feed_service.rb

+ 1
- 1
app/services/process_feed_service.rb View File

@ -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

Loading…
Cancel
Save