mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
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:
parent
7e1bebdae6
commit
294868de5a
2 changed files with 2 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ n8n is [fair-code](https://faircode.io) distributed under the [Sustainable Use L
|
|||
- **Self-Hostable**: Deploy anywhere
|
||||
- **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/).
|
||||
|
||||
|
|
|
|||
|
|
@ -313,6 +313,7 @@ export async function execute(this: IExecuteFunctions, items: INodeExecutionData
|
|||
|
||||
if (options.fileName) {
|
||||
fileName = options.fileName as string;
|
||||
delete options.fileName;
|
||||
}
|
||||
|
||||
const data: ics.EventAttributes = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue