避免递归访问
This commit is contained in:
parent
eb76b272b0
commit
87b21b9f1a
|
|
@ -41,7 +41,7 @@ export async function payNotify(context, body, payId, headers) {
|
|||
filter: {
|
||||
id: payId,
|
||||
}
|
||||
}, {});
|
||||
}, { blockTrigger: true });
|
||||
if (!pay) {
|
||||
console.error('接受到无效的payId', payId);
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ async function payNotify(context, body, payId, headers) {
|
|||
filter: {
|
||||
id: payId,
|
||||
}
|
||||
}, {});
|
||||
}, { blockTrigger: true });
|
||||
if (!pay) {
|
||||
console.error('接受到无效的payId', payId);
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ export async function payNotify<ED extends EntityDict & BaseEntityDict>(context:
|
|||
filter: {
|
||||
id: payId,
|
||||
}
|
||||
}, {});
|
||||
}, { blockTrigger: true });
|
||||
if (!pay) {
|
||||
console.error('接受到无效的payId', payId);
|
||||
return;
|
||||
|
|
|
|||
Loading…
Reference in New Issue