Skip to content

Commit f5d012e

Browse files
authored
Fixes the missing host param based on the issue #242 (#246)
1 parent 311ad8a commit f5d012e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Middleware/VerifyShopify.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ protected function installRedirect(ShopDomainValue $shopDomain): RedirectRespons
320320
{
321321
return Redirect::route(
322322
Util::getShopifyConfig('route_names.authenticate'),
323-
['shop' => $shopDomain->toNative()]
323+
['shop' => $shopDomain->toNative(), 'host' => request('host')]
324324
);
325325
}
326326

0 commit comments

Comments
 (0)