We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25d1557 commit b45ca4eCopy full SHA for b45ca4e
apps/webapp/app/v3/services/upsertTaskSchedule.server.ts
@@ -215,7 +215,8 @@ export class UpsertTaskScheduleService extends BaseService {
215
});
216
217
const scheduleHasChanged =
218
- scheduleRecord.generatorExpression !== existingSchedule.generatorExpression;
+ scheduleRecord.generatorExpression !== existingSchedule.generatorExpression ||
219
+ scheduleRecord.timezone !== existingSchedule.timezone;
220
221
// find the existing instances
222
const existingInstances = await tx.taskScheduleInstance.findMany({
0 commit comments