We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3825cad commit e2f3a4aCopy full SHA for e2f3a4a
sub_store.go
@@ -52,7 +52,7 @@ func (s *SubStore) IsValid() bool {
52
if s.SortedKeyCount <= 0 || s.SortedKeyCount >= len(s.Keys) {
53
return false
54
}
55
- if s.TimeIndex < 0 || s.TimeIndex <= s.SortedKeyCount {
+ if s.TimeIndex >= len(s.Keys) || s.TimeIndex < s.SortedKeyCount {
56
57
58
if s.TTL <= 0 || s.TTL > 3650 {
0 commit comments