Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
fix: alby payment isPaid always false on create (calcom#12463)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThyMinimalDev authored Nov 22, 2023
1 parent cb7ddc4 commit d04226a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app-store/alby/lib/PaymentService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class PaymentService implements IAbstractPaymentService {
currency: payment.currency,
data: Object.assign(
{},
{ invoice: { ...invoice, isPaid: await invoice.isPaid() } }
{ invoice: { ...invoice, isPaid: false } }
) as unknown as Prisma.InputJsonValue,
fee: 0,
refunded: false,
Expand Down

0 comments on commit d04226a

Please sign in to comment.