mirror of https://github.com/tp4a/teleport
修正:用户没有设置姓名时,登录后左上角头像显示不正常。
parent
57f4518d69
commit
9425afc3eb
|
@ -105,6 +105,9 @@ def login(handler, username, password=None, oath_code=None):
|
|||
|
||||
del user_info['password']
|
||||
del user_info['oath_secret']
|
||||
|
||||
if len(user_info['surname']) == 0:
|
||||
user_info['surname'] = user_info['username']
|
||||
return TPE_OK, user_info
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue