Call media.present? because media may be nil (#7474)

master
abcang 6 years ago committed by Eugen Rochko
parent 42a1231245
commit 3793e598d0
  1. 2
      app/services/post_status_service.rb

@ -22,7 +22,7 @@ class PostStatusService < BaseService
media = validate_media!(options[:media_ids])
status = nil
text = options.delete(:spoiler_text) if text.blank? && options[:spoiler_text].present?
text = '.' if text.blank? && !media.empty?
text = '.' if text.blank? && media.present?
ApplicationRecord.transaction do
status = account.statuses.create!(text: text,

Loading…
Cancel
Save