Update LCSCProvider.php: fix error in query string (#873)

Fix typo in query string 'prodctCode' -> 'productCode' introduced in Commit 80527e3
This commit is contained in:
Marc 2025-02-25 13:32:36 +01:00 committed by GitHub
parent 467d50bd31
commit b53989bb9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -76,7 +76,7 @@ class LCSCProvider implements InfoProviderInterface
'Cookie' => new Cookie('currencyCode', $this->currency) 'Cookie' => new Cookie('currencyCode', $this->currency)
], ],
'query' => [ 'query' => [
'prductCode' => $id, 'productCode' => $id,
], ],
]); ]);