mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(core): Allow "window" again in expressions (#3474)
This commit is contained in:
@@ -156,10 +156,6 @@ export class Expression {
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
let returnValue;
|
||||
try {
|
||||
if (/([^a-zA-Z0-9"']window[^a-zA-Z0-9"'])/g.test(parameterValue)) {
|
||||
throw new Error(`window is not allowed`);
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call
|
||||
returnValue = tmpl.tmpl(parameterValue, data);
|
||||
} catch (error) {
|
||||
|
||||
Reference in New Issue
Block a user