Skip to content
Snippets Groups Projects
Commit ff3d9098 authored by Bruno Muniz's avatar Bruno Muniz :apple:
Browse files

Fixed issue where deeplinking pushes wrong stack

parent dbceb53c
No related branches found
No related tags found
3 merge requests!71Releasing v1.1.5 (214),!67v1.1.5 b(203),!59Invite friends
......@@ -261,7 +261,10 @@ extension PushRouter {
switch route {
case .search:
if (navigationController.viewControllers.last as? SearchContainerController) == nil {
navigationController.setViewControllers([SearchContainerController()], animated: true)
navigationController.setViewControllers([
ChatListController(),
SearchContainerController()
], animated: true)
}
case .requests:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment