From 8ba3cd571645729670940ddcdd77cdb05277bf73 Mon Sep 17 00:00:00 2001 From: Kiryl Kaveryn Date: Wed, 14 Feb 2024 15:05:05 +0400 Subject: [PATCH] [ios] fix: crash when user taps the Menu button during hiding animation Signed-off-by: Kiryl Kaveryn --- .../UI/BottomMenu/TabBar/BottomTabBarInteractor.swift | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/iphone/Maps/UI/BottomMenu/TabBar/BottomTabBarInteractor.swift b/iphone/Maps/UI/BottomMenu/TabBar/BottomTabBarInteractor.swift index 24bdbdaaaf..24daa10607 100644 --- a/iphone/Maps/UI/BottomMenu/TabBar/BottomTabBarInteractor.swift +++ b/iphone/Maps/UI/BottomMenu/TabBar/BottomTabBarInteractor.swift @@ -47,14 +47,16 @@ extension BottomTabBarInteractor: BottomTabBarInteractorProtocol { func openMenu() { guard let state = controlsManager?.menuState else { - fatalError() + fatalError("ERROR: Failed to retrieve the current MapViewControlsManager's state.") } switch state { case .inactive: controlsManager?.menuState = .active case .active: controlsManager?.menuState = .inactive - case .hidden: fallthrough + case .hidden: + // When the current controls manager's state is hidden, accidental taps on the menu button during the hiding animation should be skipped. + break; case .layers: fallthrough - @unknown default: fatalError() + @unknown default: fatalError("ERROR: Unexpected MapViewControlsManager's state: \(state)") } } }