Skip to content

Commit

Permalink
fix: zebedee callback not marking invoice as paid
Browse files Browse the repository at this point in the history
  • Loading branch information
cameri committed May 25, 2023
1 parent 2335a57 commit d48ed6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/callbacks/zebedee-callback-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export class ZebedeeCallbackController implements IController {
try {
await this.paymentsService.confirmInvoice({
id: invoice.id,
confirmedAt: updatedInvoice.confirmedAt,
confirmedAt: invoice.confirmedAt,
amountPaid: invoice.amountRequested,
})
await this.paymentsService.sendInvoiceUpdateNotification(updatedInvoice)
Expand Down

0 comments on commit d48ed6c

Please sign in to comment.