diff --git a/CHANGELOG.md b/CHANGELOG.md index 58d603500..3601e3c3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Access your most recent Webxdc-apps from the Homescreen using our shiny new widget (#2406) - 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 }