From 6fd4105d69bf132a01d726b2e79a38715f68a653 Mon Sep 17 00:00:00 2001 From: Daniel Guzman Date: Thu, 25 Jul 2024 01:52:23 +0200 Subject: [PATCH] Fix --- src/Dto/SeasonDto.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Dto/SeasonDto.php b/src/Dto/SeasonDto.php index 9b4bd5cd..d57b3c56 100644 --- a/src/Dto/SeasonDto.php +++ b/src/Dto/SeasonDto.php @@ -183,6 +183,10 @@ class SeasonDto { $this->gamesPerWeek = $seasonEntity->getGamesPerWeek(); } + if ($seasonEntity->isActive()) + { + $this->active = $seasonEntity->isActive(); + } } /**