Compare commits

...

1 Commits

Author SHA1 Message Date
126720814e
fix the case when relation is set to null
All checks were successful
soko-web/pipeline/pr-master This commit looks good
2023-05-28 12:19:57 +02:00

View File

@ -302,6 +302,8 @@ class PersistentDataManager implements IPersistentDataManager
if ($relationModel !== null) {
$model->$methodSet($relationModel->getId());
} else {
$model->$methodSet(null);
}
}
}