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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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';