iOS: Should be able to re-show tunnel detail

Fixes a bug introduced in the refactoring in
commit 7322fb084087774e8b58e347902f6d7036cbde5c

Signed-off-by: Roopesh Chander <roop@roopc.net>
This commit is contained in:
Roopesh Chander 2019-05-27 15:36:34 +05:30
parent 9faf814e8b
commit 5e9780ef8f
1 changed files with 9 additions and 11 deletions

View File

@ -257,7 +257,6 @@ class TunnelsListTableViewController: UIViewController {
guard let splitViewController = splitViewController else { return }
guard let navController = navigationController else { return }
if detailDisplayedTunnel != tunnel {
let tunnelDetailVC = TunnelDetailTableViewController(tunnelsManager: tunnelsManager,
tunnel: tunnel)
let tunnelDetailNC = UINavigationController(rootViewController: tunnelDetailVC)
@ -268,7 +267,6 @@ class TunnelsListTableViewController: UIViewController {
splitViewController.showDetailViewController(tunnelDetailNC, sender: self, animated: animated)
}
detailDisplayedTunnel = tunnel
}
self.presentedViewController?.dismiss(animated: false, completion: nil)
}
}