Skip to content

Commit a51b5a8

Browse files
authored
Fix unset store path when custom is enabled
1 parent ae128f9 commit a51b5a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Model/Config.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ public function getStorePathType(): PathType
4040

4141
public function isUnsetSingleStorePath(): bool
4242
{
43-
return $this->scopeConfig->isSetFlag(self::CONFIG_PATH_UNSET_SINGLE_STORE_PATH);
43+
return $this->scopeConfig->isSetFlag(self::CONFIG_PATH_UNSET_SINGLE_STORE_PATH)
44+
&& $this->getStorePathType() !== PathType::Custom;
4445
}
4546

4647
public function getCountry(StoreInterface $store): string

0 commit comments

Comments
 (0)