diff --git a/src/ORM/Entity.php b/src/ORM/Entity.php index a2da7ec..91c223d 100755 --- a/src/ORM/Entity.php +++ b/src/ORM/Entity.php @@ -670,7 +670,7 @@ abstract class Entity if (in_array($relation, $possibleRelations)) { $this->$relation = $this->$relation()->get(); } - if ($this->$relation) { + if ($this->$relation && $propagate) { $this->$relation->with($propagate); } }