Skip to content

Commit

Permalink
Merge branch 'release/25.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
einpraegsam committed Feb 7, 2024
2 parents fa5e113 + efad84c commit e1dc1b2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Classes/Domain/Service/LogService.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,10 @@ public function logNewsletterOpening(Newsletter $newsletter, User $user): void
*/
public function logLinkOpening(Link $link): void
{
$this->logNewsletterOpening($link->getNewsletter(), $link->getUser());
$this->log($link->getNewsletter(), $link->getUser(), Log::STATUS_LINKOPENING, ['target' => $link->getTarget()]);
if ($link->getUser() !== null) {
$this->logNewsletterOpening($link->getNewsletter(), $link->getUser());
$this->log($link->getNewsletter(), $link->getUser(), Log::STATUS_LINKOPENING, ['target' => $link->getTarget()]);
}
}

/**
Expand Down
1 change: 1 addition & 0 deletions Documentation/Changelog/Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

| Version | Date | State | Description |
|------------|------------|---------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 25.0.1 | 2024.02.07 | Bugfix | Prevent exception on tracked links if a user is deleted/disabled |
| 25.0.0 | 2024.02.02 | Feature | Add two new events for newsletter manipulation, update LUXletter for news 11, bugfix for unsubscribe action in TYPO3 12 |
| 24.0.2 | 2023.10.05 | Bugfix | Respect `asynchronousQueueStorage` configuration even if newsletters are generated from CLI now |
| 24.0.1 | 2023.09.29 | Bugfix | Revive `$GLOBALS['TYPO3_CONF_VARS']['MAIL_LUXLETTER']` configuration for TYPO3 11 and 12 |
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
'title' => 'luxletter - TYPO3 Email Marketing Newsletter Tool',
'description' => 'Free newsletter extension for TYPO3 for an individual email marketing. A lot of analytics and modern concepts. Works with and without EXT:lux.',
'category' => 'plugin',
'version' => '25.0.0',
'version' => '25.0.1',
'author' => 'Alex Kellner',
'author_email' => '[email protected]',
'author_company' => 'in2code.de',
Expand Down

0 comments on commit e1dc1b2

Please sign in to comment.