From 5e8af184169ac4700b15795d4da2d5c17a642048 Mon Sep 17 00:00:00 2001 From: Jeroen Boersma Date: Fri, 3 Mar 2023 15:22:01 +0100 Subject: [PATCH] Used wrong constant I am an idiot --- src/Model/Config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/Config.php b/src/Model/Config.php index cb84ba6..2c83282 100644 --- a/src/Model/Config.php +++ b/src/Model/Config.php @@ -30,12 +30,12 @@ public function isEnabled(int $storeId = null): bool public function getTrackingId(int $storeId = null): string { - return (string)$this->config->getValue(self::CONFIG_RUMVISION_ENALBED, ScopeInterface::SCOPE_STORE, $this->getStoreId($storeId)); + return (string)$this->config->getValue(self::CONFIG_RUMVISION_TRACKING_ID, ScopeInterface::SCOPE_STORE, $this->getStoreId($storeId)); } public function getHostName(int $storeId = null): string { - return (string)$this->config->getValue(self::CONFIG_RUMVISION_ENALBED, ScopeInterface::SCOPE_STORE, $this->getStoreId($storeId)); + return (string)$this->config->getValue(self::CONFIG_RUMVISION_HOST_NAME, ScopeInterface::SCOPE_STORE, $this->getStoreId($storeId)); } public function getStoreId(int $storeId = null) :int