fix: refs #6005 runtime #2401

Merged
pablone merged 5 commits from 6005-fix-runtime-error into test 2024-05-03 10:53:52 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 6152820078 - Show all commits

View File

@ -18,7 +18,7 @@ module.exports = Self => {
const {backupPrinterNotificationDelay} = await models.ProductionConfig.findOne();
if (backupPrinterNotificationDelay) {
const notifications = await models.NotificationQueue.find(
{where: {created: {gte: Date.vnNow() - (backupPrinterNotificationDelay * 1000) + (3600 * 1000)},
{where: {created: {gte: new Date(Date.vnNow() - (backupPrinterNotificationDelay * 1000))},
notificationFk: notificationName,
status: 'sent'
}