Update the updated since label on every appearance

This commit is contained in:
Maurice Parker 2019-10-25 17:07:40 -05:00
parent 8304b174bf
commit 473053e813

View File

@ -60,22 +60,16 @@ class MasterFeedViewController: UITableViewController, UndoableCommandRunner {
refreshControl!.addTarget(self, action: #selector(refreshAccounts(_:)), for: .valueChanged)
configureToolbar()
updateUI()
becomeFirstResponder()
}
override func viewWillAppear(_ animated: Bool) {
navigationController?.title = NSLocalizedString("Feeds", comment: "Feeds")
applyChanges(animate: false)
updateUI()
super.viewWillAppear(animated)
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
}
// MARK: Notifications
@objc func unreadCountDidChange(_ note: Notification) {