Skip to content

Commit 1cbb265

Browse files
committed
Fixxes #15565
1 parent 6f8fc45 commit 1cbb265

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/code/Magento/Store/Model/PathConfig.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ public function shouldBeSecure($path)
8383
*/
8484
public function getDefaultPath()
8585
{
86-
return $this->scopeConfig->getValue('web/default/front', ScopeInterface::SCOPE_STORE);
86+
$store = $this->storeManager->getStore();
87+
$value =$this->scopeConfig->getValue('web/default/front', ScopeInterface::SCOPE_STORE,$store);
88+
return $value;
8789
}
8890
}

0 commit comments

Comments
 (0)