You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 6, 2021. It is now read-only.
There appears to be a bug in CarrierWave::Uploader::Store#filename -> @filename is nil, e.g. @filename is not being set by the cache code. Neither cache! nor retrieve_from_cache! are being called.
There appears to be a bug in
CarrierWave::Uploader::Store#filename -> @filename
isnil
, e.g.@filename
is not being set by the cache code. Neithercache!
norretrieve_from_cache!
are being called.Uploader
spec re:Store#filename()
Workaround by adding a
filename()
method to your uploader:CarrierWave::Uploader should proxy the
#filename()
message to the file, as it does for other convenience methods. E.g. https://github.com/jnicklas/carrierwave/blob/master/lib/carrierwave/uploader/store.rb#L27 could do:The text was updated successfully, but these errors were encountered: