fix webhook cache

This commit is contained in:
Yuri Kuznetsov
2022-08-23 10:31:17 +03:00
parent 1d03f557ce
commit ee1e3bbaf9

View File

@@ -99,10 +99,10 @@ class Manager
if (is_null($this->data)) {
$this->data = $this->buildData();
}
if ($this->config->get('useCache')) {
$this->storeDataToCache();
if ($this->config->get('useCache')) {
$this->storeDataToCache();
}
}
}