summaryrefslogtreecommitdiffstats
path: root/api4/post.go
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-06-27 04:05:50 +0800
committerGeorge Goldberg <george@gberg.me>2017-06-26 21:05:50 +0100
commitf2abb9d8eb4b35369d286749ede37916a8979e07 (patch)
treeeab631042f86bdd4e21370e826d47a1f9d668168 /api4/post.go
parentffaab0bf22952f4e4c43fab62955eb0cdc13612b (diff)
downloadchat-f2abb9d8eb4b35369d286749ede37916a8979e07.tar.gz
chat-f2abb9d8eb4b35369d286749ede37916a8979e07.tar.bz2
chat-f2abb9d8eb4b35369d286749ede37916a8979e07.zip
fix permission app error with updatePost (#6749)
Diffstat (limited to 'api4/post.go')
-rw-r--r--api4/post.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/api4/post.go b/api4/post.go
index 7bfe5ad64..65a508df7 100644
--- a/api4/post.go
+++ b/api4/post.go
@@ -302,6 +302,10 @@ func searchPosts(c *Context, w http.ResponseWriter, r *http.Request) {
func updatePost(c *Context, w http.ResponseWriter, r *http.Request) {
c.RequirePostId()
+ if c.Err != nil {
+ return
+ }
+
post := model.PostFromJson(r.Body)
if post == nil {