fix opposite logic

fix https://github.com/seaweedfs/seaweedfs/issues/5871
This commit is contained in:
chrislu
2024-08-08 23:16:38 -07:00
parent e069009f09
commit e825dd7496

View File

@@ -165,12 +165,12 @@ func (ff *FileFilter) matches(entry *filer_pb.Entry) bool {
}
}
if *ff.minAge != -1 {
if entry.Attributes.Crtime + *ff.minAge < time.Now().Unix() {
if entry.Attributes.Crtime + *ff.minAge > time.Now().Unix() {
return false
}
}
if *ff.maxAge != -1 {
if entry.Attributes.Crtime + *ff.maxAge > time.Now().Unix() {
if entry.Attributes.Crtime + *ff.maxAge < time.Now().Unix() {
return false
}
}