TP-62107 | Naman Khurmi | nullability check while computing for same … (#10195)
Co-authored-by: Shivam Goyal <shivam.goyal@navi.com>
This commit is contained in:
@@ -98,7 +98,8 @@ private fun handleCtaUrl(
|
||||
?.metaData
|
||||
?.get(APP_PLATFORM_SCREEN_STATE_ID)
|
||||
setBackScreenData(activity, screenId, screenStateId)
|
||||
val isSameScreen = screenId == queryMap?.get(APP_PLATFORM_SCREEN_ID)
|
||||
val isSameScreen =
|
||||
screenId?.let { id -> id == queryMap?.get(APP_PLATFORM_SCREEN_ID) } ?: false
|
||||
if (isSameScreen) {
|
||||
viewModel.setScreenDefinitionState(
|
||||
ApScreenDefinitionState.Success(
|
||||
|
||||
Reference in New Issue
Block a user