Closed lochmueller closed 3 years ago
The $this->luxIdentification($link); call should be in the if ($link !== null) { condition to avoid a exception if the link do not exists (because luxIdentification use a type hint): https://github.com/in2code-de/luxletter/blob/develop/Classes/Middleware/LuxletterLink.php#L49
$this->luxIdentification($link);
if ($link !== null) {
I will create a pull request if there is enough time next week....
Regards, Tim
Thx, I pushed a fix to develop branch. Ready for the upcoming release.
The
$this->luxIdentification($link);
call should be in theif ($link !== null) {
condition to avoid a exception if the link do not exists (because luxIdentification use a type hint): https://github.com/in2code-de/luxletter/blob/develop/Classes/Middleware/LuxletterLink.php#L49I will create a pull request if there is enough time next week....
Regards, Tim