Update version check for consistency

[MAILPOET-4061]
This commit is contained in:
John Oleksowicz
2022-01-27 11:16:46 -06:00
committed by Veljko V
parent 5e9728c91a
commit ffb0416cf7

View File

@@ -937,8 +937,9 @@ class Migrator {
}
private function updateDefaultInactiveSubscriberTimeRange(): bool {
// only run if the current database version is older than 3.78.0
if (version_compare((string)$this->settings->get('db_version', '3.78.0'), '3.78.0', '>=')) {
// Skip if the installed version is newer than the release that preceded this migration, or if it's a fresh install
$currentlyInstalledVersion = (string)$this->settings->get('db_version', '3.78.1');
if (version_compare($currentlyInstalledVersion, '3.78.0', '>')) {
return false;
}