Ignore old notifications

This commit is contained in:
ekzyis 2024-10-16 03:25:21 +02:00
parent a346a849db
commit 2472613d90
1 changed files with 14 additions and 0 deletions

14
main.go
View File

@ -44,6 +44,13 @@ func tickGameStart(c *sn.Client) {
for _, n := range mentions { for _, n := range mentions {
// we only care about current notifications
x := time.Now().Add(-30 * time.Second)
if n.Item.CreatedAt.Before(x) {
log.Println("ignoring old mention %d", n.Item.Id)
continue
}
if exists, err := db.ItemHasReply(n.Item.Id, meId); err != nil { if exists, err := db.ItemHasReply(n.Item.Id, meId); err != nil {
log.Printf("failed to check for existing reply to game start in item %d: %v\n", n.Item.Id, err) log.Printf("failed to check for existing reply to game start in item %d: %v\n", n.Item.Id, err)
continue continue
@ -88,6 +95,13 @@ func tickGameProgress(c *sn.Client) {
for _, n := range replies { for _, n := range replies {
// we only care about current notifications
x := time.Now().Add(-30 * time.Second)
if n.Item.CreatedAt.Before(x) {
log.Println("ignoring old reply %d", n.Item.Id)
continue
}
if exists, err := db.ItemHasReply(n.Item.Id, meId); err != nil { if exists, err := db.ItemHasReply(n.Item.Id, meId); err != nil {
log.Printf("failed to check for existing reply to game update in item %d: %v\n", n.Item.Id, err) log.Printf("failed to check for existing reply to game update in item %d: %v\n", n.Item.Id, err)
continue continue