Skip to content

Commit

Permalink
[BUGFIX] Use correct receiver source
Browse files Browse the repository at this point in the history
  • Loading branch information
dahaupt committed Dec 27, 2021
1 parent acd0cb0 commit ada73a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/Domain/Model/Receiver.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Receiver
/**
* @var string
*/
protected $source = '';
protected $source = 'TYPO3';

/**
* @var array
Expand Down Expand Up @@ -90,7 +90,7 @@ public function toArray(): array
'registered' => $this->registered,
'attributes' => $this->attributes,
'global_attributes' => $this->attributes,
'source' => 'TYPO3',
'source' => $this->source,
];
}

Expand Down

0 comments on commit ada73a9

Please sign in to comment.