kiwicommerce / magento2-admin-activity

Magento 2 - Admin Activity by KiwiCommerce
https://kiwicommerce.co.uk/extensions/magento2-admin-activity/
93 stars 76 forks source link

Not compatible with Magento 2.4 #22

Open peterjaap opened 3 years ago

peterjaap commented 3 years ago

Here's how I fixed/circumvented it for now, not sure if this is the correct fix;

diff --git Model/Processor.php Model/Processor.php
index f0ddde1..ce58d1c 100644
--- Model/Processor.php
+++ Model/Processor.php
@@ -624,7 +624,7 @@ class Processor
         }

         if ($this->helper->isPageVisitEnable()
-            && $this->isValidAction($module, $this->lastAction)) {
+            && $this->isValidAction($module, $this->lastAction) && $this->eventConfig) {

             $activity = $this->_initLog();