Fix crash when posting with a CW but no text nor media

master
Thibaut Girka 4 years ago
parent faa56643b8
commit d98fabf2ee
  1. 6
      app/services/post_status_service.rb

@ -50,11 +50,11 @@ class PostStatusService < BaseService
def preprocess_attributes!
if @text.blank? && @options[:spoiler_text].present?
@text = '.'
if @media.find(&:video?) || @media.find(&:gifv?)
if @media&.find(&:video?) || @media&.find(&:gifv?)
@text = '📹'
elsif @media.find(&:audio?)
elsif @media&.find(&:audio?)
@text = '🎵'
elsif @media.find(&:image?)
elsif @media&.find(&:image?)
@text = '🖼'
end
end

Loading…
Cancel
Save