From d058a4ecd04305d0009bd96789b99aff859ea3e4 Mon Sep 17 00:00:00 2001 From: Dwayne Harris Date: Wed, 7 Nov 2018 00:31:31 -0800 Subject: [PATCH] Fix attachment view presentation from StatusTableViewController --- elpha-ios/StatusTableViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elpha-ios/StatusTableViewController.swift b/elpha-ios/StatusTableViewController.swift index a3f1757..fd02f5e 100644 --- a/elpha-ios/StatusTableViewController.swift +++ b/elpha-ios/StatusTableViewController.swift @@ -349,7 +349,7 @@ extension StatusTableViewController: StatusViewDelegate { controller.status = status controller.attachmentIndex = index - self.navigationController?.pushViewController(controller, animated: false) + present(controller, animated: false) } }