Skip to content

Commit

Permalink
[BUGFIX] Prevent null value for flexform string
Browse files Browse the repository at this point in the history
Related: #926
  • Loading branch information
mschwemer committed Sep 19, 2024
1 parent 896cdab commit ede5a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Update/PowermailPluginUpdater.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public function performMigration(string $list_type): bool
}
} else {
$targetCType = 'powermail_pi1';
$newFlexform = $record['pi_flexform'];
$newFlexform = $record['pi_flexform'] ?? '';
}

// Remove flexform data which do not exist in flexform of new plugin
Expand Down

0 comments on commit ede5a78

Please sign in to comment.