Fix #4853 - Unable to open rooms because of missing bug reporting completion handling.

This commit is contained in:
Stefan Ceriu
2026-02-03 09:43:04 +02:00
committed by Stefan Ceriu
parent dd8f51e065
commit 2b967a59aa

View File

@@ -212,6 +212,14 @@ class ChatsTabFlowCoordinator: FlowCoordinatorProtocol {
userIndicatorController: flowParameters.userIndicatorController,
bugReportService: flowParameters.bugReportService,
userSession: userSession))
bugReportFlowCoordinator?.actionsPublisher.sink { [weak self] action in
switch action {
case .complete:
self?.stateMachine.processEvent(.dismissedFeedbackScreen)
}
}
.store(in: &cancellables)
bugReportFlowCoordinator?.start()
case (.feedbackScreen, .dismissedFeedbackScreen, .roomList):
break