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

Fixed issue w/ navigation on group creation

parent bc4a4a94
No related branches found
No related tags found
2 merge requests!40v1.1.2b166,!39Fixing QA bugs before releasing
......@@ -25,6 +25,7 @@ public struct ContactListCoordinator: ContactListCoordinating {
var sidePresenter: Presenting = SideMenuPresenter()
var bottomPresenter: Presenting = BottomPresenter()
var fullscreenPresenter: Presenting = FullscreenPresenter()
var replacePresenter: Presenting = ReplacePresenter(mode: .replaceLast)
var scanFactory: () -> UIViewController
var searchFactory: () -> UIViewController
......@@ -104,7 +105,7 @@ public extension ContactListCoordinator {
func toGroupChat(with info: GroupInfo, from parent: UIViewController) {
let screen = groupChatFactory(info)
pushPresenter.present(screen, from: parent)
replacePresenter.present(screen, from: parent)
}
func toSideMenu(from parent: UIViewController) {
......
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