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 6f8fc45 commit 1cbb265Copy full SHA for 1cbb265
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