rename variable. (#12204)

This commit is contained in:
Sumit Kumar 2022-03-24 16:38:52 +05:30 committed by GitHub
parent f34dcbf9bd
commit a486474483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -130,18 +130,18 @@ public class FirestorePlugin extends BasePlugin {
ActionConfiguration actionConfiguration) { ActionConfiguration actionConfiguration) {
Object smartSubstitutionObject = actionConfiguration.getFormData().getOrDefault(SMART_SUBSTITUTION, TRUE); Object smartSubstitutionObject = actionConfiguration.getFormData().getOrDefault(SMART_SUBSTITUTION, TRUE);
Boolean smartBsonSubstitution = TRUE; Boolean smartJsonSubstitution = TRUE;
if (smartSubstitutionObject instanceof Boolean) { if (smartSubstitutionObject instanceof Boolean) {
smartBsonSubstitution = (Boolean) smartSubstitutionObject; smartJsonSubstitution = (Boolean) smartSubstitutionObject;
} else if (smartSubstitutionObject instanceof String) { } else if (smartSubstitutionObject instanceof String) {
// Older UI configuration used to set this value as a string which may/may not be castable to a boolean // Older UI configuration used to set this value as a string which may/may not be castable to a boolean
// directly. This is to ensure we are backward compatible // directly. This is to ensure we are backward compatible
smartBsonSubstitution = Boolean.parseBoolean((String) smartSubstitutionObject); smartJsonSubstitution = Boolean.parseBoolean((String) smartSubstitutionObject);
} }
// Smartly substitute in actionConfiguration.body and replace all the bindings with values. // Smartly substitute in actionConfiguration.body and replace all the bindings with values.
List<Map.Entry<String, String>> parameters = new ArrayList<>(); List<Map.Entry<String, String>> parameters = new ArrayList<>();
if (TRUE.equals(smartBsonSubstitution)) { if (TRUE.equals(smartJsonSubstitution)) {
String query = getValueSafelyFromFormData(actionConfiguration.getFormData(), BODY, String.class); String query = getValueSafelyFromFormData(actionConfiguration.getFormData(), BODY, String.class);
if (query != null) { if (query != null) {