uploads: fix being redirected to blank page when rating is not selected.

Fix the upload page redirecting you to a blank page if you forgot to
select the rating on a multi-asset upload.

ref: https://danbooru.donmai.us/forum_posts/206365
This commit is contained in:
evazion
2022-02-23 02:43:21 -06:00
parent 4c652cf3ec
commit 6f5aef1cef

View File

@@ -80,10 +80,8 @@ class PostsController < ApplicationController
flash[:notice] = "Duplicate of post ##{@original_post.id}; merging tags"
redirect_to @original_post
else
@upload = @upload_media_asset.upload
@media_asset = @upload_media_asset.media_asset
flash[:notice] = @post.errors.full_messages.join("; ")
respond_with(@post, render: { template: "uploads/show" })
respond_with(@post, render: { template: "upload_media_assets/show" })
end
end