Merge branch '2.4' into develop

pull/8227/head
iglocska 2022-03-18 10:12:25 +01:00
commit df1eb43b2c
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 5 additions and 1 deletions

View File

@ -837,7 +837,11 @@ class EventsController extends AppController
$events = $absolute_total === 0 ? [] : $this->Event->find('all', $rules);
}
$isCsvResponse = $this->response->type() === 'text/csv';
$instanceFingerprint = $this->Event->CryptographicKey->ingestInstanceKey();
try {
$instanceFingerprint = $this->Event->CryptographicKey->ingestInstanceKey();
} catch (Exception $e) {
$instanceFingerprint = null;
}
if (!$minimal) {
// Collect all tag IDs that are events
$tagIds = [];