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/context.go | 2 +- api4/reaction.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'api4') diff --git a/api4/context.go b/api4/context.go index 6c46d1e4e..b10ea7a9b 100644 --- a/api4/context.go +++ b/api4/context.go @@ -579,7 +579,7 @@ func (c *Context) RequireEmojiName() *Context { validName := regexp.MustCompile(`^[a-zA-Z0-9\-\+_]+$`) - if len(c.Params.EmojiName) == 0 || len(c.Params.EmojiName) > 64 || !validName.MatchString(c.Params.EmojiName) { + if len(c.Params.EmojiName) == 0 || len(c.Params.EmojiName) > model.EMOJI_NAME_MAX_LENGTH || !validName.MatchString(c.Params.EmojiName) { c.SetInvalidUrlParam("emoji_name") } 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