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.
2 parents 2699504 + e9b5bf1 commit 3331b89Copy full SHA for 3331b89
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