Feature/4383 poll participants details

This commit is contained in:
Frank Rotermund
2023-05-31 14:31:07 +00:00
committed by Arnfried Griesert
parent 00286183f6
commit 9bd569dac0
22 changed files with 462 additions and 19 deletions
+6
View File
@@ -143,6 +143,12 @@ final class RoomCoordinator: NSObject, RoomCoordinatorProtocol {
navigationRouter.setRootModule(self, popCompletion: nil)
}
}
// FRROT its like sleep() again -> hopefully there is a better solution. When directly calling self.navigation router here its still nil and it needs to be called this early because soon afterwards the pollCells get build
DispatchQueue.main.asyncAfter(deadline: .now() + 0.01) {
TimelinePollProvider.shared.navigationRouter = self.navigationRouter
}
}
func start(withEventId eventId: String, completion: (() -> Void)?) {