FIX: Don't fail silently.

This commit is contained in:
Guo Xiang Tan 2016-09-02 11:53:53 +08:00
parent efd7cbd887
commit baa6af93a2

View file

@ -267,9 +267,10 @@ class Upload < ActiveRecord::Base
end end
# store to new location & update the filesize # store to new location & update the filesize
File.open(path) do |f| File.open(path) do |f|
upload.url = Discourse.store.store_upload(f, upload) upload.update_attributes!(
upload.filesize = f.size url: Discourse.store.store_upload(f, upload),
upload.save filesize: f.size
)
end end
# remap the URLs # remap the URLs
DbHelper.remap(UrlHelper.absolute(previous_url), upload.url) unless external DbHelper.remap(UrlHelper.absolute(previous_url), upload.url) unless external