mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
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:
parent
e94b8a6c30
commit
17a4e2ea80
|
@ -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(
|
||||
|
|
|
@ -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';
|
||||
|
||||
|
|
Loading…
Reference in a new issue