Fix payment app credential search (#8235)
parent
cdc3833e09
commit
d8218a6243
|
@ -1582,11 +1582,10 @@ async function handler(
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof paymentAppData.price === "number" && paymentAppData.price > 0) {
|
if (typeof paymentAppData.price === "number" && paymentAppData.price > 0) {
|
||||||
/* Validate if there is any stripe_payment credential for this user */
|
/* Validate if there is any payment app credential for this user */
|
||||||
/* note: removes custom error message about stripe */
|
|
||||||
await prisma.credential.findFirstOrThrow({
|
await prisma.credential.findFirstOrThrow({
|
||||||
where: {
|
where: {
|
||||||
type: "stripe_payment",
|
appId: paymentAppData.appId,
|
||||||
userId: organizerUser.id,
|
userId: organizerUser.id,
|
||||||
},
|
},
|
||||||
select: {
|
select: {
|
||||||
|
|
Loading…
Reference in New Issue