Skip to content

Commit

Permalink
Put minAge back to a week
Browse files Browse the repository at this point in the history
  • Loading branch information
rcy committed Dec 27, 2024
1 parent c3df4d9 commit ec25292
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion handlers/anonlink.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ import (
"goirc/handlers/linkpool"
"goirc/image"
db "goirc/model"
"time"
)

const (
// how old a message must be before it is delivered
minAge = 0 //7 * time.Hour * 24
minAge = 7 * time.Hour * 24

// how long to wait after an anon message is posted to send one from the queue
FutureMessageInterval = "+1 hour"
Expand Down

0 comments on commit ec25292

Please sign in to comment.