mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
FIX: don't stop youtube when liking a post
Also fixes post action create/destroy api not to include post raw.
This commit is contained in:
parent
c43f6455f2
commit
e14e8f64bc
@ -327,12 +327,24 @@ Discourse.Post = Discourse.Model.extend({
|
|||||||
updateFromJson: function(obj) {
|
updateFromJson: function(obj) {
|
||||||
if (!obj) return;
|
if (!obj) return;
|
||||||
|
|
||||||
|
var skip, oldVal;
|
||||||
|
|
||||||
// Update all the properties
|
// Update all the properties
|
||||||
var post = this;
|
var post = this;
|
||||||
_.each(obj, function(val,key) {
|
_.each(obj, function(val,key) {
|
||||||
if (key !== 'actions_summary'){
|
if (key !== 'actions_summary'){
|
||||||
if (val) {
|
oldVal = post[key];
|
||||||
post.set(key, val);
|
skip = false;
|
||||||
|
|
||||||
|
if (val && val !== oldVal) {
|
||||||
|
|
||||||
|
if (key === "reply_to_user" && val && oldVal) {
|
||||||
|
skip = val.username === oldVal.username || Em.get(val, "username") === Em.get(oldVal, "username");
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!skip) {
|
||||||
|
post.set(key, val);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -355,9 +355,9 @@ class ApplicationController < ActionController::Base
|
|||||||
|
|
||||||
protected
|
protected
|
||||||
|
|
||||||
def render_post_json(post)
|
def render_post_json(post, add_raw=true)
|
||||||
post_serializer = PostSerializer.new(post, scope: guardian, root: false)
|
post_serializer = PostSerializer.new(post, scope: guardian, root: false)
|
||||||
post_serializer.add_raw = true
|
post_serializer.add_raw = add_raw
|
||||||
post_serializer.topic_slug = post.topic.slug if post.topic.present?
|
post_serializer.topic_slug = post.topic.slug if post.topic.present?
|
||||||
|
|
||||||
counts = PostAction.counts_for([post], current_user)
|
counts = PostAction.counts_for([post], current_user)
|
||||||
|
@ -22,7 +22,7 @@ class PostActionsController < ApplicationController
|
|||||||
else
|
else
|
||||||
# We need to reload or otherwise we are showing the old values on the front end
|
# We need to reload or otherwise we are showing the old values on the front end
|
||||||
@post.reload
|
@post.reload
|
||||||
render_post_json(@post)
|
render_post_json(@post, _add_raw = false)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -43,7 +43,7 @@ class PostActionsController < ApplicationController
|
|||||||
PostAction.remove_act(current_user, @post, post_action.post_action_type_id)
|
PostAction.remove_act(current_user, @post, post_action.post_action_type_id)
|
||||||
|
|
||||||
@post.reload
|
@post.reload
|
||||||
render_post_json(@post)
|
render_post_json(@post, _add_raw = false)
|
||||||
end
|
end
|
||||||
|
|
||||||
def defer_flags
|
def defer_flags
|
||||||
|
Loading…
x
Reference in New Issue
Block a user