diff --git a/CHANGELOG.md b/CHANGELOG.md index 97f17e967..14f519176 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Don't show message-input when forwarding (#2435) - Long-tap links for copying to clipboard (#2445) +- Hide address in titles: protect against over-the-shoulder-attacks, improve screenshot privacy, clear UX (#2447) ## v1.50.3 diff --git a/deltachat-ios/Chat/ChatViewController.swift b/deltachat-ios/Chat/ChatViewController.swift index dc160c170..ef7bd7c3a 100644 --- a/deltachat-ios/Chat/ChatViewController.swift +++ b/deltachat-ios/Chat/ChatViewController.swift @@ -904,8 +904,6 @@ class ChatViewController: UITableViewController, UITableViewDropDelegate { let dcContact = dcContext.getContact(id: chatContactIds[0]) if dcContact.isBot { subtitle = String.localized("bot") - } else if dcChat.isProtected == false { - subtitle = dcContact.email } else { subtitle = nil }