From 6990d052d5e95295e729aae28a0d30bfdcb98573 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Thu, 11 Jan 2018 16:57:47 +0100 Subject: [XYZ-6] Add sampledata platform command (#8027) * Add fake dependency * [XYZ-6] Add sampledata platform command * Creating EMOJI_NAME_MAX_LENGTH as a constant and using it where needed --- api4/reaction.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'api4/reaction.go') diff --git a/api4/reaction.go b/api4/reaction.go index 6208b0aee..af637bf91 100644 --- a/api4/reaction.go +++ b/api4/reaction.go @@ -22,7 +22,7 @@ func saveReaction(c *Context, w http.ResponseWriter, r *http.Request) { return } - if len(reaction.UserId) != 26 || len(reaction.PostId) != 26 || len(reaction.EmojiName) == 0 || len(reaction.EmojiName) > 64 { + if len(reaction.UserId) != 26 || len(reaction.PostId) != 26 || len(reaction.EmojiName) == 0 || len(reaction.EmojiName) > model.EMOJI_NAME_MAX_LENGTH { c.Err = model.NewAppError("saveReaction", "api.reaction.save_reaction.invalid.app_error", nil, "", http.StatusBadRequest) return } -- cgit v1.2.3-1-g7c22