ソースを参照

fix(webapp): preserve exact spelling of email addresses, see #417

Peter Thomassen 4 年 前
コミット
22d4987fba
2 ファイル変更2 行追加2 行削除
  1. 1 1
      webapp/src/views/ResetPassword.vue
  2. 1 1
      webapp/src/views/SignUp.vue

+ 1 - 1
webapp/src/views/ResetPassword.vue

@@ -174,7 +174,7 @@
         this.errors = [];
         try {
           await HTTP.post('auth/account/reset-password/', {
-            email: this.email.toLowerCase(),
+            email: this.email,
             captcha: {
               id: this.captcha.id,
               solution: this.captchaSolution,

+ 1 - 1
webapp/src/views/SignUp.vue

@@ -243,7 +243,7 @@
         }
         try {
           await HTTP.post('auth/', {
-            email: this.email.toLowerCase(),
+            email: this.email,
             password: null,
             captcha: {
               id: this.captcha.id,