Merge pull request #29 from UTXOnly/timestamp

Adjust event time constraints on each event handle
This commit is contained in:
OceanSlim 2024-10-27 20:52:45 -04:00 committed by GitHub
commit f1511a9b8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -79,6 +79,9 @@ func validateEventTimestamp(evt nostr.Event) bool {
return false return false
} }
// Adjust event time constraints in the configuration
utils.AdjustEventTimeConstraints(cfg)
// Use current time for max and a fixed date for min if not specified // Use current time for max and a fixed date for min if not specified
now := time.Now().Unix() now := time.Now().Unix()
minCreatedAt := cfg.EventTimeConstraints.MinCreatedAt minCreatedAt := cfg.EventTimeConstraints.MinCreatedAt