Adjust event time contrainst on each event handle

This commit is contained in:
Brian Hartford 2024-10-27 17:04:25 -04:00
parent 158f284be9
commit 49b628b7e0

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