浏览代码

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,7 +264,7 @@ class LoginDialog extends Component<Props, State> {
264 264
      */
265 265
     _onUsernameChange(text) {
266 266
         this.setState({
267
-            username: text
267
+            username: text.trim()
268 268
         });
269 269
     }
270 270
 

正在加载...
取消
保存