Aaron Singer
Aaron Singer
Has this issue been fixed? I'm running into it too.
PS: I wonder if this issue was created in response to #333.
Another potential issue: Apparerently, this is the offending code from [insertPaymentRecord](https://github.com/invertase/stripe-firebase-extensions/blob/96df62858190bac67572a73c75f49f8ec12c4f12/firestore-stripe-payments/functions/src/utils.ts#L358:) ``` await customersSnap.docs[0].ref .collection('payments') .doc(payment.id) .set(payment, { merge: true }); logs.firestoreDocCreated('payments', payment.id); }; ``` This will merge the failed...
Perhaps using the event id instead of using the payment id would fix this, but then there will be separate documents for successful payments and failed ones which may be...