Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:ohmybrew/laravel-shopify
Browse files Browse the repository at this point in the history
  • Loading branch information
gnikyt committed Oct 9, 2018
2 parents 7d6da50 + 18470f3 commit 71dfbda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ShopifyApp/Middleware/AuthProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class AuthProxy
*/
public function handle(Request $request, Closure $next)
{
// Grab the data we need, remove signature since its not part of the signature calculation
$query = request()->all();
// Grab the query parameters we need, remove signature since its not part of the signature calculation
$query = request()->query->all();
$signature = $query['signature'];
unset($query['signature']);

Expand Down

0 comments on commit 71dfbda

Please sign in to comment.