Browse Source

rn,auth: trim the username

Fixes: https://github.com/jitsi/jitsi-meet/issues/5673
master
Saúl Ibarra Corretgé 5 years ago
parent
commit
a8b8612304
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/authentication/components/LoginDialog.native.js

+ 1
- 1
react/features/authentication/components/LoginDialog.native.js View File

264
      */
264
      */
265
     _onUsernameChange(text) {
265
     _onUsernameChange(text) {
266
         this.setState({
266
         this.setState({
267
-            username: text
267
+            username: text.trim()
268
         });
268
         });
269
     }
269
     }
270
 
270
 

Loading…
Cancel
Save