Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit 61856f5

Browse files
EliasKotlyargelanivishal
authored andcommitted
Fixxes #15565
1 parent 943e2cd commit 61856f5

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)