From 2cebb6bd7dca191789730e3fd1f2ba720f16bbfe Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sun, 1 Mar 2020 19:40:32 -0500 Subject: [PATCH] Show custom emojis in display names (where possible) --- Tusker/Screens/Profile/ProfileTableViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tusker/Screens/Profile/ProfileTableViewController.swift b/Tusker/Screens/Profile/ProfileTableViewController.swift index 9bbe8c10..5a2c6616 100644 --- a/Tusker/Screens/Profile/ProfileTableViewController.swift +++ b/Tusker/Screens/Profile/ProfileTableViewController.swift @@ -129,7 +129,7 @@ class ProfileTableViewController: EnhancedTableViewController { @objc func updateUIForPreferences() { guard let accountID = accountID, let account = mastodonController.cache.account(for: accountID) else { return } - navigationItem.title = account.displayOrUserName + navigationItem.title = account.displayNameWithoutCustomEmoji } func getStatuses(for range: RequestRange = .default, onlyPinned: Bool = false, completion: @escaping Client.Callback<[Status]>) {