Skip to content

Commit

Permalink
Remove tr_ prefix from ID
Browse files Browse the repository at this point in the history
  • Loading branch information
Web10-Joris committed Aug 26, 2024
1 parent 2b99086 commit 2a05f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gateways/Builtin/MollieGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ protected function getOrderFromWebhookRequest(Request $request): ?Order
{
return OrderFacade::query()
->where('mollie->id', $request->get('id'))
->orWhere('gateway', 'like', "%tr_{$request->get('id')}%")
->orWhere('gateway', 'like', "%{$request->get('id')}%")
->first();
}
}

0 comments on commit 2a05f5e

Please sign in to comment.