Skip to content

Commit 5e8af18

Browse files
Used wrong constant
I am an idiot
1 parent da1cafc commit 5e8af18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Model/Config.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ public function isEnabled(int $storeId = null): bool
3030

3131
public function getTrackingId(int $storeId = null): string
3232
{
33-
return (string)$this->config->getValue(self::CONFIG_RUMVISION_ENALBED, ScopeInterface::SCOPE_STORE, $this->getStoreId($storeId));
33+
return (string)$this->config->getValue(self::CONFIG_RUMVISION_TRACKING_ID, ScopeInterface::SCOPE_STORE, $this->getStoreId($storeId));
3434
}
3535

3636
public function getHostName(int $storeId = null): string
3737
{
38-
return (string)$this->config->getValue(self::CONFIG_RUMVISION_ENALBED, ScopeInterface::SCOPE_STORE, $this->getStoreId($storeId));
38+
return (string)$this->config->getValue(self::CONFIG_RUMVISION_HOST_NAME, ScopeInterface::SCOPE_STORE, $this->getStoreId($storeId));
3939
}
4040

4141
public function getStoreId(int $storeId = null) :int

0 commit comments

Comments
 (0)