Browse Source

Fix too late return

closed-social-glitch-2
Eugen 7 years ago
committed by GitHub
parent
commit
f63f0c4625
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/services/process_feed_service.rb

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

@ -44,6 +44,8 @@ class ProcessFeedService < BaseService
Rails.logger.debug "Creating remote status #{id}"
status = status_from_xml(@xml)
return if status.nil?
if verb == :share
original_status = status_from_xml(@xml.at_xpath('.//activity:object', activity: TagManager::AS_XMLNS))
status.reblog = original_status
@ -56,8 +58,6 @@ class ProcessFeedService < BaseService
end
end
return if status.nil?
status.save!
NotifyService.new.call(status.reblog.account, status) if status.reblog? && status.reblog.account.local?

Loading…
Cancel
Save