Call blob.preview for previewable attachments

undoing a mistake introduced in ef6198d3
This commit is contained in:
Mike Dalessio
2025-07-19 09:08:59 -04:00
parent 8b544e6404
commit 692e563d3f
@@ -14,8 +14,10 @@
<audio controls="true" width="100%" preload="metadata">
<source src="<%= rails_blob_url(blob) %>" type="<%= blob.content_type %>">
</audio>
<% elsif blob.variable? || blob.previewable? %>
<% elsif blob.variable? %>
<%= image_tag url_for(blob.variant(variant)), width: width, height: height %>
<% elsif blob.previewable? %>
<%= image_tag url_for(blob.preview(variant)), width: width, height: height %>
<% else %>
<span class="attachment__icon"><%= blob.filename.extension&.downcase.presence || "unknown" %></span>
<% end %>