mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-13 07:27:43 +00:00
only populate when first message wasn't checked previously
This commit is contained in:
parent
412bc04d77
commit
1dc4c72da2
1 changed files with 1 additions and 1 deletions
|
@ -291,7 +291,7 @@ func (nc *notificationsConsumer) Consume(delivery rmq.Delivery) {
|
|||
}
|
||||
|
||||
// Let's populate this with the latest message so we don't flood users with stuff
|
||||
if account.LastMessageID == "" {
|
||||
if account.LastMessageID == "" && account.LastCheckedAt == 0 {
|
||||
nc.logger.WithFields(logrus.Fields{
|
||||
"accountID": delivery.Payload(),
|
||||
}).Debug("populating first message ID to prevent spamming")
|
||||
|
|
Loading…
Reference in a new issue