Defect: CXTDT-434858 Support panel is not opening for L2 authentication

This commit is contained in:
Ramya Subramaniam 2023-07-11 18:51:40 +05:30
parent b49c03fa7f
commit 23ec67e668

View File

@ -435,7 +435,7 @@ import MVMCore
// Open the support panel
if error == nil,
loadObject?.requestParameters?.openSupportPanel ?? (loadObject?.systemParametersJSON?.boolForKey(KeyOpenSupport) ?? false) == true {
(loadObject?.requestParameters?.openSupportPanel ?? false) || (loadObject?.systemParametersJSON?.boolForKey(KeyOpenSupport) ?? false) == true {
MVMCoreUISession.sharedGlobal()?.splitViewController?.showRightPanel(animated: true)
}
}