mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-19 21:16:10 -05:00
FIX: Don't fail silently.
This commit is contained in:
parent
efd7cbd887
commit
baa6af93a2
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue