Skip to content

Commit

Permalink
When sending action info to server show that null could be send
Browse files Browse the repository at this point in the history
  • Loading branch information
e-marchand committed May 21, 2024
1 parent 7473aee commit 142d9ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ data class ActionTask(
}

data class ActionInfo(
val paramsToSubmit: HashMap<String, Any>? = null,
val paramsToSubmit: HashMap<String, Any?>? = null,
var errors: Map<String, String>? = null,
val metaDataToSubmit: HashMap<String, String>? = null,
val imagesToUpload: HashMap<String, String>? = null,
Expand Down

0 comments on commit 142d9ee

Please sign in to comment.