FIX: Don't try to create an empty tag when updating a topic (#8481)
Fixes an issue where updates to the first post in a topic would be visible only for staff. Before, because the empty tag would find its way to `PostRevisor`, `TopicsController#update` would create a hidden revision, and later `PostsController#update` would only update that revision. After this change, `TopicsController` doesn't create a revision at all (unless necessary), so `PostsController` can create it (and correctly decide whether the revision should be hidden or not).
This commit is contained in:
@@ -397,7 +397,13 @@ export default function() {
|
||||
this.get("/t/500.json", () => response(502, {}));
|
||||
|
||||
this.put("/t/:slug/:id", request => {
|
||||
const data = parsePostData(request.requestBody);
|
||||
const isJSON = request.requestHeaders["Content-Type"].includes(
|
||||
"application/json"
|
||||
);
|
||||
|
||||
const data = isJSON
|
||||
? JSON.parse(request.requestBody)
|
||||
: parsePostData(request.requestBody);
|
||||
|
||||
return response(200, {
|
||||
basic_topic: {
|
||||
|
||||
Reference in New Issue
Block a user