From c016a88c845ecaa4d219de43243efe07f0103c2d Mon Sep 17 00:00:00 2001 From: hmhealey Date: Thu, 5 Nov 2015 09:25:59 -0500 Subject: Fixed string length checks for fields that can contain unicode characters --- model/oauth.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'model/oauth.go') diff --git a/model/oauth.go b/model/oauth.go index 0320e7ec7..67825dd97 100644 --- a/model/oauth.go +++ b/model/oauth.go @@ -7,6 +7,7 @@ import ( "encoding/json" "fmt" "io" + "unicode/utf8" ) type OAuthApp struct { @@ -57,7 +58,7 @@ func (a *OAuthApp) IsValid() *AppError { return NewAppError("OAuthApp.IsValid", "Invalid homepage", "app_id="+a.Id) } - if len(a.Description) > 512 { + if utf8.RuneCountInString(a.Description) > 512 { return NewAppError("OAuthApp.IsValid", "Invalid description", "app_id="+a.Id) } -- cgit v1.2.3-1-g7c22