From 51ce76aeab75d760c1a26badf901ab818dd741a8 Mon Sep 17 00:00:00 2001
From: David Baker <dave@matrix.org>
Date: Fri, 15 Jan 2016 10:08:16 +0000
Subject: [PATCH] M_INVALID_USERNAME to be consistent with param name

---
 src/Signup.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Signup.js b/src/Signup.js
index 2d823b62ae..fbc2a09634 100644
--- a/src/Signup.js
+++ b/src/Signup.js
@@ -152,7 +152,7 @@ class Register extends Signup {
             } else {
                 if (error.errcode === 'M_USER_IN_USE') {
                     throw new Error("Username in use");
-                } else if (error.errcode == 'M_INVALID_USER_NAME') {
+                } else if (error.errcode == 'M_INVALID_USERNAME') {
                     throw new Error("User names may only contain alphanumeric characters, underscores or dots!");
                 } else if (error.httpStatus == 401) {
                     throw new Error("Authorisation failed!");
-- 
GitLab