Don't poll failed invoices if anon

This commit is contained in:
ekzyis 2025-03-12 20:09:54 -05:00
parent 2038701ecf
commit 6f50b485b4

View File

@ -236,6 +236,7 @@ function RetryHandler ({ children }) {
const waitForWalletPayment = useWalletPayment() const waitForWalletPayment = useWalletPayment()
const invoiceHelper = useInvoice() const invoiceHelper = useInvoice()
const [getFailedInvoices] = useLazyQuery(FAILED_INVOICES, { fetchPolicy: 'network-only', nextFetchPolicy: 'network-only' }) const [getFailedInvoices] = useLazyQuery(FAILED_INVOICES, { fetchPolicy: 'network-only', nextFetchPolicy: 'network-only' })
const { me } = useMe()
const retry = useCallback(async (invoice) => { const retry = useCallback(async (invoice) => {
const newInvoice = await invoiceHelper.retry({ ...invoice, newAttempt: true }) const newInvoice = await invoiceHelper.retry({ ...invoice, newAttempt: true })
@ -255,6 +256,8 @@ function RetryHandler ({ children }) {
// we always retry failed invoices, even if the user has no wallets on any client // we always retry failed invoices, even if the user has no wallets on any client
// to make sure that failed payments will always show up in notifications eventually // to make sure that failed payments will always show up in notifications eventually
if (!me) return
const retryPoll = async () => { const retryPoll = async () => {
let failedInvoices let failedInvoices
try { try {
@ -298,7 +301,7 @@ function RetryHandler ({ children }) {
queuePoll() queuePoll()
return stopPolling return stopPolling
}, [wallets, getFailedInvoices, retry]) }, [me?.id, wallets, getFailedInvoices, retry])
return children return children
} }