We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9e4487 commit 050b5e9Copy full SHA for 050b5e9
grails-app/controllers/au/org/ala/ecodata/ParatooController.groovy
@@ -283,7 +283,6 @@ class ParatooController {
283
284
if (log.isDebugEnabled()) {
285
log.debug("ParatooController::submitCollection")
286
- log.debug(request.JSON.toString())
287
}
288
if (collection.hasErrors()) {
289
error(collection.errors)
grails-app/services/au/org/ala/ecodata/ParatooService.groovy
@@ -263,7 +263,7 @@ class ParatooService {
263
264
Map dataSet = null
265
ParatooProject project = projects?.find {
266
- dataSet = it.dataSets?.find { it.orgMintedUUID == orgMintedUUID }
+ dataSet = it.dataSets?.find { it.dataSetId == orgMintedUUID }
267
dataSet
268
269
[dataSet:dataSet, project:project]
0 commit comments