Skip to content

Commit

Permalink
Fixes the missing host param based on the issue #242 (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyon147 authored Jan 9, 2024
1 parent 311ad8a commit f5d012e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Middleware/VerifyShopify.php
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ protected function installRedirect(ShopDomainValue $shopDomain): RedirectRespons
{
return Redirect::route(
Util::getShopifyConfig('route_names.authenticate'),
['shop' => $shopDomain->toNative()]
['shop' => $shopDomain->toNative(), 'host' => request('host')]
);
}

Expand Down

0 comments on commit f5d012e

Please sign in to comment.