summaryrefslogtreecommitdiffstats
path: root/api4/channel.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/channel.go')
-rw-r--r--api4/channel.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/api4/channel.go b/api4/channel.go
index 0b8470975..f21b45d56 100644
--- a/api4/channel.go
+++ b/api4/channel.go
@@ -90,6 +90,12 @@ func updateChannel(c *Context, w http.ResponseWriter, r *http.Request) {
return
}
+ // The channel being updated in the payload must be the same one as indicated in the URL.
+ if channel.Id != c.Params.ChannelId {
+ c.SetInvalidParam("channel_id")
+ return
+ }
+
var oldChannel *model.Channel
var err *model.AppError
if oldChannel, err = c.App.GetChannel(channel.Id); err != nil {