Fix incorrect variable.

This commit is contained in:
Guo Xiang Tan 2018-09-12 02:06:14 -07:00
parent c053f8ccf6
commit 2cc48cfd06
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ class UploadRecovery
end
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?
end
end