Skip to content

Commit

Permalink
refactor(group): temporarily use account as group member's name
Browse files Browse the repository at this point in the history
  • Loading branch information
lomirus committed May 30, 2022
1 parent fe30cf4 commit 5c5b129
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/main/chatroom/message_group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ impl FactoryComponent<Box, ChatroomMsg> for MessageGroup {
.find(|user| user.uin == self.account)
.unwrap_or(&FriendInfo {
uin: self.account,
nick: "String".to_string(),
remark: "String".to_string(),
nick: self.account.to_string(),
remark: self.account.to_string(),
face_id: 0,
group_id: 0,
})
Expand Down

0 comments on commit 5c5b129

Please sign in to comment.