Skip to content

Commit 3ddd1a2

Browse files
committed
Fixed typo (negation) from previous commit
1 parent ccd3cb5 commit 3ddd1a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tasks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public function auditSite(int $idSite, bool $debug = false)
121121
}
122122

123123
$siteSettings = new MeasurableSettings($idSite);
124-
if ($siteSettings->isAuditEnabled() && !$this->isInDebugMode()) {
124+
if (!$siteSettings->isAuditEnabled() && !$this->isInDebugMode()) {
125125
$this->logInfo('Performance Audit task for site ' . $idSite . ' will be skipped due to setting which disables it for this site');
126126
return;
127127
}

0 commit comments

Comments
 (0)