Fix crash when posting with a CW but no text nor media
parent
5dbcafb998
commit
af5467a0d7
|
@ -50,11 +50,11 @@ class PostStatusService < BaseService
|
||||||
def preprocess_attributes!
|
def preprocess_attributes!
|
||||||
if @text.blank? && @options[:spoiler_text].present?
|
if @text.blank? && @options[:spoiler_text].present?
|
||||||
@text = '.'
|
@text = '.'
|
||||||
if @media.find(&:video?) || @media.find(&:gifv?)
|
if @media&.find(&:video?) || @media&.find(&:gifv?)
|
||||||
@text = '📹'
|
@text = '📹'
|
||||||
elsif @media.find(&:audio?)
|
elsif @media&.find(&:audio?)
|
||||||
@text = '🎵'
|
@text = '🎵'
|
||||||
elsif @media.find(&:image?)
|
elsif @media&.find(&:image?)
|
||||||
@text = '🖼'
|
@text = '🖼'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue