fix(operator): neq error

This commit is contained in:
Alex Moreno 2024-06-03 15:01:06 +02:00
parent 349914743c
commit bbf027ede5
1 changed files with 1 additions and 1 deletions

View File

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