fix(Schedule Trigger Node): Use the correct moment import (#8185)

Any node that uses `moment.tz` should import from `moment-timezone`
instead of `moment`.

This fixes #8184
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-01-02 12:50:31 +01:00
committed by GitHub
parent e94b8a6c30
commit 17a4e2ea80
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import type { IDataObject } from 'n8n-workflow';
import moment from 'moment';
import moment from 'moment-timezone';
import type { IRecurencyRule } from './SchedulerInterface';
export function recurencyCheck(

View File

@@ -8,7 +8,7 @@ import type {
import { NodeOperationError } from 'n8n-workflow';
import { CronJob } from 'cron';
import moment from 'moment';
import moment from 'moment-timezone';
import type { IRecurencyRule } from './SchedulerInterface';
import { convertToUnixFormat, recurencyCheck } from './GenericFunctions';