Skip to content
Snippets Groups Projects
Commit 91e4955e authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Fix admin interface crashing when listing boosts with non-video media attachments (#12907)

Fix regression introduced by #12879
parent ba16d4b4
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@
- if status.proper.media_attachments.first.video?
- video = status.proper.media_attachments.first
= react_component :video, src: video.file.url(:original), preview: video.file.url(:small), blurhash: video.blurhash, sensitive: status.proper.sensitive?, visible: false, width: 610, height: 343, inline: true, alt: video.description
- elsif status.media_attachments.first.audio?
- elsif status.proper.media_attachments.first.audio?
- audio = status.proper.media_attachments.first
= react_component :audio, src: audio.file.url(:original), height: 110, alt: audio.description, duration: audio.file.meta.dig(:original, :duration)
- else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment