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