summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--model/client.go2
-rw-r--r--model/utils_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/model/client.go b/model/client.go
index ac85b0d1c..d3f76817d 100644
--- a/model/client.go
+++ b/model/client.go
@@ -230,7 +230,7 @@ func (c *Client) CreateUser(user *User, hash string) (*Result, *AppError) {
}
func (c *Client) CreateUserFromSignup(user *User, data string, hash string) (*Result, *AppError) {
- if r, err := c.DoApiPost("/users/create?d="+data+"&h="+hash, user.ToJson()); err != nil {
+ if r, err := c.DoApiPost("/users/create?d="+url.QueryEscape(data)+"&h="+hash, user.ToJson()); err != nil {
return nil, err
} else {
return &Result{r.Header.Get(HEADER_REQUEST_ID),
diff --git a/model/utils_test.go b/model/utils_test.go
index 6d6f9e653..aab535fc9 100644
--- a/model/utils_test.go
+++ b/model/utils_test.go
@@ -70,7 +70,7 @@ func TestValidLower(t *testing.T) {
t.Error("should be valid")
}
- if IsLower("corey+test@hulen.com") {
+ if IsLower("Corey+test@hulen.com") {
t.Error("should be invalid")
}
}