mirror of
https://github.com/chatmail/core.git
synced 2026-05-20 07:16:31 +03:00
Merge pull request #1016 from deltachat/fix_displayname
fix displayname to use authname when availible
This commit is contained in:
@@ -745,6 +745,9 @@ impl Contact {
|
|||||||
if !self.name.is_empty() {
|
if !self.name.is_empty() {
|
||||||
return &self.name;
|
return &self.name;
|
||||||
}
|
}
|
||||||
|
if !self.authname.is_empty() {
|
||||||
|
return &self.authname;
|
||||||
|
}
|
||||||
&self.addr
|
&self.addr
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user