fix bug with single thumbnails erroring

This commit is contained in:
Joshua Arts 2018-07-25 16:16:25 -04:00
parent a9892d2dcb
commit fd2dc3abec
2 changed files with 7 additions and 1 deletions

View File

@ -127,6 +127,12 @@ class RoomsController < ApplicationController
end
helper_method :recording_length
# Prevents single images from erroring when not passed as an array.
def safe_recording_images(images)
Array.wrap(images)
end
helper_method :safe_recording_images
private
def room_params

View File

@ -8,7 +8,7 @@
<td>
<% p = recording[:playbacks].find do |p| p[:type] == "presentation" end %>
<% if p %>
<% p[:preview][:images][:image].each do |img| %>
<% safe_recording_images(p[:preview][:images][:image]).each do |img| %>
<%= image_tag(img[:content].strip, class: "thumbnail px-2") %>
<% end %>
<% end %>