mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-18 12:52:52 +00:00
Fix crash when posting with a CW but no text nor media
This commit is contained in:
parent
faa56643b8
commit
d98fabf2ee
|
@ -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 a new issue