fix(ICalendar Node): Fix Convert to ICS failing when File Name option is set (#27712)

Co-authored-by: Garrit Franke <32395585+garritfra@users.noreply.github.com>
This commit is contained in:
Rayan Salhab 2026-04-08 18:15:17 +03:00 committed by GitHub
parent 7e1bebdae6
commit 294868de5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -53,7 +53,7 @@ n8n is [fair-code](https://faircode.io) distributed under the [Sustainable Use L
- **Self-Hostable**: Deploy anywhere - **Self-Hostable**: Deploy anywhere
- **Extensible**: Add your own nodes and functionality - **Extensible**: Add your own nodes and functionality
[Enterprise licenses](mailto:license@n8n.io) available for additional features and support. [Enterprise Licenses](mailto:license@n8n.io) available for additional features and support.
Additional information about the license model can be found in the [docs](https://docs.n8n.io/sustainable-use-license/). Additional information about the license model can be found in the [docs](https://docs.n8n.io/sustainable-use-license/).

View file

@ -313,6 +313,7 @@ export async function execute(this: IExecuteFunctions, items: INodeExecutionData
if (options.fileName) { if (options.fileName) {
fileName = options.fileName as string; fileName = options.fileName as string;
delete options.fileName;
} }
const data: ics.EventAttributes = { const data: ics.EventAttributes = {