We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2699504 commit e9b5bf1Copy full SHA for e9b5bf1
Helper/ApiClientHelper.php
@@ -505,7 +505,7 @@ private function _getDebugInfo(): array
505
];
506
507
// Module version
508
- $debug['moduleVersion'] = $this->_storeConfigHelper->getValue('module_version');
+ $debug['moduleVersion'] = $this->_storeConfigHelper->getModuleVersion();
509
510
// Magento version
511
$version = $this->_productMetadata->getVersion();
Helper/StoreConfigHelper.php
@@ -164,7 +164,7 @@ public function getCredentials(): array
164
*/
165
public function getModuleVersion(): string
166
{
167
- return $this->getValue('module_version');
+ return $this->getValue('module_version') ?? 'UNKNOWN';
168
}
169
170
/**
0 commit comments