mirror of
				https://github.com/lunaisnotaboy/mastodon.git
				synced 2025-11-04 06:45:01 +00:00 
			
		
		
		
	Fix default assumed object type (note->activity), make stream entry threaded? check aware of orphaned replies
This commit is contained in:
		
							parent
							
								
									0634e8dee5
								
							
						
					
					
						commit
						5f737c7228
					
				| 
						 | 
				
			
			@ -39,7 +39,7 @@ class StreamEntry < ApplicationRecord
 | 
			
		|||
  end
 | 
			
		||||
 | 
			
		||||
  def threaded?
 | 
			
		||||
    verb == :favorite || object_type == :comment
 | 
			
		||||
    (verb == :favorite || object_type == :comment) && !thread.nil?
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def thread
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -214,7 +214,7 @@ class ProcessFeedService < BaseService
 | 
			
		|||
  def object_type(xml)
 | 
			
		||||
    xml.at_xpath('./activity:object-type').content.gsub('http://activitystrea.ms/schema/1.0/', '').to_sym
 | 
			
		||||
  rescue
 | 
			
		||||
    :note
 | 
			
		||||
    :activity
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def verb(xml)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue