Fix incorrect variable.

This commit is contained in:
Guo Xiang Tan 2018-09-12 02:06:14 -07:00
parent 797a259702
commit f08e7bdbff

View File

@ -106,7 +106,7 @@ class UploadRecovery
end end
def create_upload(file, filename, post) def create_upload(file, filename, post)
upload = UploadCreator.new(tmp, filename).create_for(post.user_id) upload = UploadCreator.new(file, filename).create_for(post.user_id)
post.rebake! if upload.persisted? post.rebake! if upload.persisted?
end end
end end