Skip to content
Snippets Groups Projects
Unverified Commit 2bf9bf9d authored by Angelo Capossele's avatar Angelo Capossele Committed by GitHub
Browse files

:bug: Fix bug (#665)

parent f7c29857
No related branches found
No related tags found
No related merge requests found
......@@ -59,5 +59,5 @@ func (c conflict) finalizedRatio() float64 {
// isOlderThan returns true if the conflict is older (i.e., last modified time) than the given duration.
func (c conflict) isOlderThan(d time.Duration) bool {
return c.Modified.Add(d).After(time.Now())
return c.Modified.Add(d).Before(time.Now())
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment