summaryrefslogtreecommitdiffstats
path: root/api4/channel.go
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-08-31 15:03:16 +0100
committerJoram Wilander <jwawilander@gmail.com>2017-08-31 10:03:16 -0400
commit63b10be020deffecba0c5eef8e5872418215b464 (patch)
tree192c061ba8abc8c07b4241fa1d186c0152f8267a /api4/channel.go
parentb37e17c03259b592e0bc735d48d15d7cf34469e4 (diff)
downloadchat-63b10be020deffecba0c5eef8e5872418215b464.tar.gz
chat-63b10be020deffecba0c5eef8e5872418215b464.tar.bz2
chat-63b10be020deffecba0c5eef8e5872418215b464.zip
APIv4: NewLocAppError -> NewAppError (#7328)
Diffstat (limited to 'api4/channel.go')
-rw-r--r--api4/channel.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/api4/channel.go b/api4/channel.go
index 8e9a6d9d6..8a14b85bb 100644
--- a/api4/channel.go
+++ b/api4/channel.go
@@ -106,15 +106,13 @@ func updateChannel(c *Context, w http.ResponseWriter, r *http.Request) {
}
if oldChannel.DeleteAt > 0 {
- c.Err = model.NewLocAppError("updateChannel", "api.channel.update_channel.deleted.app_error", nil, "")
- c.Err.StatusCode = http.StatusBadRequest
+ c.Err = model.NewAppError("updateChannel", "api.channel.update_channel.deleted.app_error", nil, "", http.StatusBadRequest)
return
}
if oldChannel.Name == model.DEFAULT_CHANNEL {
if (len(channel.Name) > 0 && channel.Name != oldChannel.Name) || (len(channel.Type) > 0 && channel.Type != oldChannel.Type) {
- c.Err = model.NewLocAppError("updateChannel", "api.channel.update_channel.tried.app_error", map[string]interface{}{"Channel": model.DEFAULT_CHANNEL}, "")
- c.Err.StatusCode = http.StatusBadRequest
+ c.Err = model.NewAppError("updateChannel", "api.channel.update_channel.tried.app_error", map[string]interface{}{"Channel": model.DEFAULT_CHANNEL}, "", http.StatusBadRequest)
return
}
}