Commit af1f887d authored by Micaël Bergeron's avatar Micaël Bergeron

review fix

parent 9d4757c2
......@@ -35,12 +35,12 @@ class GitlabUploader < CarrierWave::Uploader::Base
# Reduce disk IO
def move_to_cache
super || true
super.nil? ? true : super
end
# Reduce disk IO
def move_to_store
super || true
super.nil? ? true : super
end
def exists?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment