up
This commit is contained in:
parent
a13ddda025
commit
2328dfe366
1 changed files with 3 additions and 1 deletions
|
|
@ -246,7 +246,9 @@ export default class {
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const symbol = url.includes('?') ? "&" : "?"
|
const symbol = url.includes('?') ? "&" : "?"
|
||||||
await fetch(url + symbol + "ok=true")
|
const finalUrl = url + symbol + "ok=true"
|
||||||
|
log("sending paid callback to", finalUrl)
|
||||||
|
await fetch(finalUrl)
|
||||||
} catch (err: any) {
|
} catch (err: any) {
|
||||||
log(ERROR, "error sending paid callback for invoice", err.message || "")
|
log(ERROR, "error sending paid callback for invoice", err.message || "")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue