mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-23 11:44:06 -08:00
🐛 Fix issue with missing global.Promise
This commit is contained in:
parent
b6762af7f2
commit
1ebc81bfd4
|
@ -118,7 +118,7 @@ export class Expression {
|
|||
// Execute the expression
|
||||
try {
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call
|
||||
tmpl.tmpl('{{global=this;}}', data);
|
||||
tmpl.tmpl('{{this.Promise=global.Promise;global=this;}}', data);
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call
|
||||
const returnValue = tmpl.tmpl(parameterValue, data);
|
||||
if (typeof returnValue === 'function') {
|
||||
|
|
Loading…
Reference in a new issue