This commit is contained in:
isUnknown 2025-05-27 12:19:17 +02:00
parent 441323e0f5
commit 3a9c213d86

View file

@ -7,7 +7,7 @@ class ProjectPage extends NotificationsPage {
$apiCache = kirby()->cache('api');
$stepsData = $apiCache?->get($this->slug() . '_' . 'steps');
if ($stepsData === null || count($stepsData) > 0) {
if ($stepsData === null || count($stepsData) === 0) {
$this->rebuildStepsCache();
};