We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 250487d commit 8106e71Copy full SHA for 8106e71
microservices/payment-stripe/src/services/payment-gateway/stripe.ts
@@ -1619,7 +1619,7 @@ class Stripe extends Abstract {
1619
private async getCustomerByAccountId(accountId: string): Promise<Customer> {
1620
const customer = await this.customerRepository
1621
.createQueryBuilder('customer')
1622
- .where("customer.params ->> 'accountId' = :value", { accountId })
+ .where("customer.params ->> 'accountId' = :accountId", { accountId })
1623
.getOne();
1624
1625
if (!customer) {
0 commit comments