Skip to content

Commit

Permalink
LIMS-1432: Fix parent job headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Williams committed Sep 5, 2024
1 parent 216c0c4 commit c775a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/Downstream/Type/Shelxt.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function results() {
$dat['SOLUTIONS'] = json_decode($json_data);

// scaling_id should always be present, but just in case...
if (in_array('scaling_id', $this->process['PARAMETERS'])) {
if (array_key_exists('scaling_id', $this->process['PARAMETERS'])) {
$integrator = $this->_lookup_autoproc(
null,
$this->process['PARAMETERS']['scaling_id']
Expand Down

0 comments on commit c775a9c

Please sign in to comment.