fix: 修复账号搜索 5xx (#6413)

Co-authored-by: ibuler <ibuler@qq.com>
Co-authored-by: Jiangjie.Bai <32935519+BaiJiangJie@users.noreply.github.com>
This commit is contained in:
fit2bot
2021-07-12 18:20:32 +08:00
committed by GitHub
parent 898b51c593
commit 4f23090a5c
2 changed files with 7 additions and 1 deletions

View File

@@ -63,6 +63,12 @@ class AuthBook(BaseUser, AbsConnectivity):
def username_display(self):
return self.get_or_systemuser_attr('username') or '*'
@property
def systemuser_display(self):
if not self.systemuser:
return ''
return str(self.systemuser)
@property
def smart_name(self):
username = self.username_display