Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions Classes/Utility/Typo3ConfVarsUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,7 @@ public static function getDMConfigMergedFields(): array
public static function getDMConfigSendPerCycle(): int
{
$dmConfig = self::getDMConfig();
if (trim($dmConfig['sendPerCycle'])) {
return (int)(trim($dmConfig['sendPerCycle']));
}

return 50;
return (int)($dmConfig['sendPerCycle'] ?? 50);
}

public static function getDMConfigNotificationJob(): bool
Expand Down