fix(community): Remove " You" suffix from the current user name
fixes: #6455
This commit is contained in:
parent
430c5eb0b7
commit
36acf3bc30
|
@ -134,7 +134,6 @@ method addChatMember*(self: Module, member: ChatMember) =
|
||||||
var status = OnlineStatus.Online
|
var status = OnlineStatus.Online
|
||||||
var displayName = contactDetails.displayName
|
var displayName = contactDetails.displayName
|
||||||
if (isMe):
|
if (isMe):
|
||||||
displayName = displayName & " (You)"
|
|
||||||
let currentUserStatus = intToEnum(singletonInstance.userProfile.getCurrentUserStatus(), StatusType.Unknown)
|
let currentUserStatus = intToEnum(singletonInstance.userProfile.getCurrentUserStatus(), StatusType.Unknown)
|
||||||
status = toOnlineStatus(currentUserStatus)
|
status = toOnlineStatus(currentUserStatus)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue