Skip to content

Commit e2f3a4a

Browse files
committed
[modify] refine check valid
1 parent 3825cad commit e2f3a4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sub_store.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func (s *SubStore) IsValid() bool {
5252
if s.SortedKeyCount <= 0 || s.SortedKeyCount >= len(s.Keys) {
5353
return false
5454
}
55-
if s.TimeIndex < 0 || s.TimeIndex <= s.SortedKeyCount {
55+
if s.TimeIndex >= len(s.Keys) || s.TimeIndex < s.SortedKeyCount {
5656
return false
5757
}
5858
if s.TTL <= 0 || s.TTL > 3650 {

0 commit comments

Comments
 (0)