fix the case when relation is set to null
All checks were successful
soko-web/pipeline/pr-master This commit looks good

This commit is contained in:
Bence Pőcze 2023-05-28 12:19:57 +02:00 committed by Bence Pőcze
parent f31b801c03
commit 25548176bb
Signed by: Gitea
GPG Key ID: 7B89B83EED9AD2C6

View File

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