瀏覽代碼

rn,auth: trim the username

Fixes: https://github.com/jitsi/jitsi-meet/issues/5673
master
Saúl Ibarra Corretgé 5 年之前
父節點
當前提交
a8b8612304
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      react/features/authentication/components/LoginDialog.native.js

+ 1
- 1
react/features/authentication/components/LoginDialog.native.js 查看文件

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…
取消
儲存