Fix default assumed object type (note->activity), make stream entry threaded? check aware of orphaned replies

master
Eugen Rochko 8 years ago
parent 0634e8dee5
commit 5f737c7228
  1. 2
      app/models/stream_entry.rb
  2. 2
      app/services/process_feed_service.rb

@ -39,7 +39,7 @@ class StreamEntry < ApplicationRecord
end end
def threaded? def threaded?
verb == :favorite || object_type == :comment (verb == :favorite || object_type == :comment) && !thread.nil?
end end
def thread def thread

@ -214,7 +214,7 @@ class ProcessFeedService < BaseService
def object_type(xml) def object_type(xml)
xml.at_xpath('./activity:object-type').content.gsub('http://activitystrea.ms/schema/1.0/', '').to_sym xml.at_xpath('./activity:object-type').content.gsub('http://activitystrea.ms/schema/1.0/', '').to_sym
rescue rescue
:note :activity
end end
def verb(xml) def verb(xml)

Loading…
Cancel
Save