Skip to content

Commit

Permalink
Merge pull request #5 from FriendsOfOro/hotfix/Oro_4.1.10_Support
Browse files Browse the repository at this point in the history
Resolve Oro 4.1.10 Compatibility Issue
  • Loading branch information
chrisaligent authored Dec 11, 2020
2 parents 4b4e23b + 5c70a66 commit 434b2de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tracker/AbstractTracker.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ abstract public function getName() : string;
*/
public function getConfigValue(string $name, string $default = null)
{
return $this->configManager->get(Configuration::getConfigKeyByName($name), $default);
return $this->configManager->get(Configuration::getConfigKeyByName($name)) ?? $default;
}
}

0 comments on commit 434b2de

Please sign in to comment.