Added Labs flag for the new App Layout

- Make CI happy
This commit is contained in:
Gil Eluard
2022-08-29 16:01:34 +02:00
parent 8b9c2ad5f1
commit bbb0dc1b5a
12 changed files with 35 additions and 34 deletions
@@ -91,7 +91,7 @@ final class AppCoordinator: NSObject, AppCoordinatorType {
// Setup user location services
_ = UserLocationServiceProvider.shared
if RiotSettings.shared.isSideMenuActivated {
if BuildSettings.isSideMenuActivated {
self.addSideMenu()
}
@@ -163,7 +163,7 @@ final class AppCoordinator: NSObject, AppCoordinatorType {
}
@objc private func newAppLayoutToggleDidChange(notification: Notification) {
if RiotSettings.shared.isSideMenuActivated {
if BuildSettings.isSideMenuActivated {
self.addSideMenu()
}
}
+1 -1
View File
@@ -4257,7 +4257,7 @@ NSString *const AppDelegateUniversalLinkDidChangeNotification = @"AppDelegateUni
}
// Need to set `showAllRoomsInHomeSpace` to `true` for the new App Layout
if (RiotSettings.shared.isNewAppLayoutActivated)
if (BuildSettings.isNewAppLayoutActivated)
{
RiotSettings.shared.showAllRoomsInHomeSpace = YES;
}