1
0
Fork 0
mirror of synced 2024-10-02 10:16:27 +13:00

Fix bug with autossl generator

This commit is contained in:
Matej Bačo 2023-09-06 10:42:01 +02:00
parent adb4c72a9c
commit 0d4957009f

View file

@ -438,6 +438,12 @@ class CertificatesV1 extends Worker
$this->dbForConsole->updateDocument('rules', $rule->getId(), $rule);
$projectId = $rule->getAttribute('projectId');
// Skip events for console project (triggered by auto-ssl generation for 1 click setups)
if($projectId === 'console') {
return;
}
$project = $this->dbForConsole->getDocument('projects', $projectId);
/** Trigger Webhook */