Remove placeholder text for media-only toots (#7806)
Ref: cfa9b6e13a
This breaks compatibility with pre-2.3.0 Mastodon and older
software, but at the time of writing the network is >80% above
that version.
Compatibility broken only for toots with no text.
			
			
This commit is contained in:
		@@ -22,7 +22,6 @@ class PostStatusService < BaseService
 | 
				
			|||||||
    media  = validate_media!(options[:media_ids])
 | 
					    media  = validate_media!(options[:media_ids])
 | 
				
			||||||
    status = nil
 | 
					    status = nil
 | 
				
			||||||
    text   = options.delete(:spoiler_text) if text.blank? && options[:spoiler_text].present?
 | 
					    text   = options.delete(:spoiler_text) if text.blank? && options[:spoiler_text].present?
 | 
				
			||||||
    text   = '.' if text.blank? && media.present?
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ApplicationRecord.transaction do
 | 
					    ApplicationRecord.transaction do
 | 
				
			||||||
      status = account.statuses.create!(text: text,
 | 
					      status = account.statuses.create!(text: text,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user