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 d595ea3 + 4c77dff commit 95a6454Copy full SHA for 95a6454
app/code/Magento/Store/Model/PathConfig.php
@@ -83,6 +83,8 @@ public function shouldBeSecure($path)
83
*/
84
public function getDefaultPath()
85
{
86
- return $this->scopeConfig->getValue('web/default/front', ScopeInterface::SCOPE_STORE);
+ $store = $this->storeManager->getStore();
87
+ $value = $this->scopeConfig->getValue('web/default/front', ScopeInterface::SCOPE_STORE, $store);
88
+ return $value;
89
}
90
0 commit comments