TP-40365 savedWidgetMetaData Crash Fix (#7737)

This commit is contained in:
Soumya Ranjan Patra
2023-09-04 18:31:43 +05:30
committed by GitHub
parent 76184d360b
commit b62868c7d3

View File

@@ -122,7 +122,7 @@ class ApGenericScreenVM @Inject constructor(repository: LambdaRepository) :
if (handle.contains(it.eventName)) {
handle.get<MutableList<String>>(it.eventName)?.add(it.stateId)
} else {
handle[it.eventName] = listOf(it.stateId)
handle[it.eventName] = mutableListOf(it.stateId)
}
}
}