mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
fix(core): Add "rawBody" also for xml requests (#3143)
This commit is contained in:
parent
ac5f357001
commit
5719e44b59
|
@ -613,6 +613,9 @@ class App {
|
||||||
normalizeTags: true, // Transform tags to lowercase
|
normalizeTags: true, // Transform tags to lowercase
|
||||||
explicitArray: false, // Only put properties in array if length > 1
|
explicitArray: false, // Only put properties in array if length > 1
|
||||||
},
|
},
|
||||||
|
verify: (req: express.Request, res: any, buf: any) => {
|
||||||
|
req.rawBody = buf;
|
||||||
|
},
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue