Skip to content

Commit

Permalink
Merge pull request #212 from ConductionNL/hotfix/variable-name
Browse files Browse the repository at this point in the history
Hotfix: Use correct variable name for target last action
  • Loading branch information
rjzondervan authored Feb 12, 2025
2 parents 5339565 + 2fdc99f commit 5fbc1e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Db/SynchronizationContract.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public function jsonSerialize(): array
'targetLastChanged' => isset($this->targetLastChanged) ? $this->targetLastChanged->format('c') : null,
'targetLastChecked' => isset($this->targetLastChecked) ? $this->targetLastChecked->format('c') : null,
'targetLastSynced' => isset($this->targetLastSynced) ? $this->targetLastSynced->format('c') : null,
'targetLastAction' => $this->lastAction,
'targetLastAction' => $this->targetLastAction,
'created' => isset($this->created) ? $this->created->format('c') : null,
'updated' => isset($this->updated) ? $this->updated->format('c') : null,
// @todo these 2 can be removed when migrations are merged
Expand Down

0 comments on commit 5fbc1e2

Please sign in to comment.