Skip to content

Commit

Permalink
Merge pull request #1 from thokiller/master
Browse files Browse the repository at this point in the history
compatibility fix for magento 2.3.*
  • Loading branch information
Derrick Heesbeen authored Dec 11, 2019
2 parents d092c52 + a6c6756 commit 5ab169f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plugin/Store/App/Request/PathInfoProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ public function aroundProcess(
}

$pathParts[0] = $storeCode;
return $proceed($request, implode('/', $pathParts));
return $proceed($request, "/". implode('/', $pathParts));
}
}

0 comments on commit 5ab169f

Please sign in to comment.